about summary refs log tree commit diff
path: root/pkgs/development/python-modules/multiset
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-11-26 15:20:41 -0500
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-11-27 20:45:39 -0500
commitb5d58552c07e4b6cf7e682d258498a0b632bd8c9 (patch)
tree93d62dbb9217021aa3c0da12b93c9e5f6aef07bc /pkgs/development/python-modules/multiset
parentab8bd6e34edeb7c0d85b545b1c59355568faa38f (diff)
pythonPackages.multiset: init at 2.1.1
Diffstat (limited to 'pkgs/development/python-modules/multiset')
-rw-r--r--pkgs/development/python-modules/multiset/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/multiset/default.nix b/pkgs/development/python-modules/multiset/default.nix
new file mode 100644
index 0000000000000..5cc159dc20597
--- /dev/null
+++ b/pkgs/development/python-modules/multiset/default.nix
@@ -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 ];
+  };
+}