Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / multiset / default.nix
blob020617abebf4c12efd5bb1b46877ee5542acf640
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools_scm
5 , pytestrunner
6 , pytest
7 }:
9 buildPythonPackage rec {
10   pname = "multiset";
11   version = "2.1.1";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "4801569c08bfcecfe7b0927b17f079c90f8607aca8fecaf42ded92b737162bc7";
16   };
18   buildInputs = [ setuptools_scm pytestrunner ];
19   checkInputs = [ pytest ];
21   meta = with lib; {
22     description = "An implementation of a multiset";
23     homepage = "https://github.com/wheerd/multiset";
24     license = licenses.mit;
25     maintainers = [ maintainers.costrouc ];
26   };