summary refs log tree commit diff
path: root/pkgs/development/python-modules/zict
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-04-03 13:33:13 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-04 19:46:00 +0200
commit3e023aa50776ebf402be20c26775f7491fa3b976 (patch)
tree0108dc8682e082ef6fa4c99ad29b16638249728d /pkgs/development/python-modules/zict
parent37b4051b05f18aa3eb91a03b26bddb3ab59e3c91 (diff)
downloadnixlib-3e023aa50776ebf402be20c26775f7491fa3b976.tar
nixlib-3e023aa50776ebf402be20c26775f7491fa3b976.tar.gz
nixlib-3e023aa50776ebf402be20c26775f7491fa3b976.tar.bz2
nixlib-3e023aa50776ebf402be20c26775f7491fa3b976.tar.lz
nixlib-3e023aa50776ebf402be20c26775f7491fa3b976.tar.xz
nixlib-3e023aa50776ebf402be20c26775f7491fa3b976.tar.zst
nixlib-3e023aa50776ebf402be20c26775f7491fa3b976.zip
pythonPackages.zict: Move to own file
Diffstat (limited to 'pkgs/development/python-modules/zict')
-rw-r--r--pkgs/development/python-modules/zict/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/zict/default.nix b/pkgs/development/python-modules/zict/default.nix
new file mode 100644
index 000000000000..0d1a806b2f86
--- /dev/null
+++ b/pkgs/development/python-modules/zict/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, pytest, heapdict }:
+
+buildPythonPackage rec {
+  pname = "zict";
+  version = "0.1.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "12h95vbkbar1hc6cr1kpr6zr486grj3mpx4lznvmnai0iy6pbqp4";
+  };
+
+  buildInputs = [ pytest ];
+  propagatedBuildInputs = [ heapdict ];
+
+  meta = with stdenv.lib; {
+    description = "Mutable mapping tools.";
+    homepage = https://github.com/dask/zict;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ teh ];
+  };
+}