3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.partd: init at 0.3.3

This commit is contained in:
Frederik Rietdijk 2016-06-03 10:22:24 +02:00
parent 09a338c1c7
commit 8fe8c2a7ec

View file

@ -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";