mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
pythonPackages.partd: init at 0.3.3
This commit is contained in:
parent
09a338c1c7
commit
8fe8c2a7ec
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user