mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03: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 {
|
patsy = buildPythonPackage rec {
|
||||||
name = "patsy-${version}";
|
name = "patsy-${version}";
|
||||||
version = "0.3.0";
|
version = "0.3.0";
|
||||||
|
Loading…
Reference in New Issue
Block a user