mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
pythonPackages.multiset: init at 2.1.1
This commit is contained in:
parent
ab8bd6e34e
commit
b5d58552c0
27
pkgs/development/python-modules/multiset/default.nix
Normal file
27
pkgs/development/python-modules/multiset/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools_scm
|
||||
, pytestrunner
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "multiset";
|
||||
version = "2.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4801569c08bfcecfe7b0927b17f079c90f8607aca8fecaf42ded92b737162bc7";
|
||||
};
|
||||
|
||||
buildInputs = [ setuptools_scm pytestrunner ];
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An implementation of a multiset";
|
||||
homepage = https://github.com/wheerd/multiset;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
|
@ -430,6 +430,8 @@ in {
|
|||
mpi = pkgs.openmpi;
|
||||
};
|
||||
|
||||
multiset = callPackage ../development/python-modules/multiset { };
|
||||
|
||||
mwclient = callPackage ../development/python-modules/mwclient { };
|
||||
|
||||
mwoauth = callPackage ../development/python-modules/mwoauth { };
|
||||
|
|
Loading…
Reference in a new issue