summary refs log tree commit diff
path: root/pkgs/top-level/python-packages.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-06-03 10:22:24 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-06-03 10:40:59 +0200
commit8fe8c2a7ece6c8c3a4080fcc944c4e622a15c306 (patch)
tree2b966132fe2e37b436db364184efceef4d730cbc /pkgs/top-level/python-packages.nix
parent09a338c1c75c5a1091e4d6f5983c99c67043d7d6 (diff)
downloadnixpkgs-8fe8c2a7ece6c8c3a4080fcc944c4e622a15c306.tar
nixpkgs-8fe8c2a7ece6c8c3a4080fcc944c4e622a15c306.tar.gz
nixpkgs-8fe8c2a7ece6c8c3a4080fcc944c4e622a15c306.tar.bz2
nixpkgs-8fe8c2a7ece6c8c3a4080fcc944c4e622a15c306.tar.lz
nixpkgs-8fe8c2a7ece6c8c3a4080fcc944c4e622a15c306.tar.xz
nixpkgs-8fe8c2a7ece6c8c3a4080fcc944c4e622a15c306.tar.zst
nixpkgs-8fe8c2a7ece6c8c3a4080fcc944c4e622a15c306.zip
pythonPackages.partd: init at 0.3.3
Diffstat (limited to 'pkgs/top-level/python-packages.nix')
-rw-r--r--pkgs/top-level/python-packages.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index a160abc4e31..48aef6da222 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -15865,6 +15865,32 @@ in modules // {
     };
   };
 
+  partd = buildPythonPackage rec {
+    name = "partd-${version}";
+    version = "0.3.3";
+
+    src = pkgs.fetchurl {
+      url = "mirror://pypi/p/partd/${name}.tar.gz";
+      sha256 = "0fgrkfhgpm0hf5gs6wvgv7p9ls2kvgk0mc5hkmjw5slfbkn3fz8v";
+    };
+
+    buildInputs = with self; [ pytest ];
+
+    propagatedBuildInputs = with self; [ locket numpy pandas pyzmq toolz ];
+
+    checkPhase = ''
+      py.test
+    '';
+
+    meta = {
+      description = "Appendable key-value storage";
+      license = with licenses; [ bsd3 ];
+      homepage = http://github.com/dask/partd/;
+    };
+
+
+  };
+
   patsy = buildPythonPackage rec {
     name = "patsy-${version}";
     version = "0.3.0";