mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
python3Packages.snappy-manifolds: init at 1.2.1
This commit is contained in:
parent
5d647bfcce
commit
042e8accc2
2 changed files with 33 additions and 0 deletions
31
pkgs/development/python-modules/snappy-manifolds/default.nix
Normal file
31
pkgs/development/python-modules/snappy-manifolds/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue