1
0
Fork 1
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:
Chris Ostrouchov 2018-11-26 15:20:41 -05:00
parent ab8bd6e34e
commit b5d58552c0
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 29 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };