python3Packages.snappy-manifolds: init at 1.2.1

This commit is contained in:
noiioiu 2025-05-22 20:04:44 -05:00
parent 5d647bfcce
commit 042e8accc2
No known key found for this signature in database
GPG key ID: BF51F00D07482A89
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "snappy-manifolds";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "3-manifolds";
repo = "snappy_manifolds";
tag = "${version}_as_released";
hash = "sha256-vxG3z6zWzG4S11fBxYGn4/c2f2sWOCIrzT+R27TR144=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "snappy_manifolds" ];
meta = {
description = "Database of snappy manifolds";
changelog = "https://github.com/3-manifolds/snappy_manifolds/releases/tag/${src.tag}";
homepage = "https://snappy.computop.org";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ noiioiu ];
};
}

View file

@ -16309,6 +16309,8 @@ self: super: with self; {
snapcast = callPackage ../development/python-modules/snapcast { };
snappy-manifolds = callPackage ../development/python-modules/snappy-manifolds { };
snapshottest = callPackage ../development/python-modules/snapshottest { };
snaptime = callPackage ../development/python-modules/snaptime { };