nixpkgs/pkgs/development/python-modules/toolz/default.nix

31 lines
643 B
Nix
Raw Normal View History

2017-10-29 11:31:48 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
2017-10-29 11:31:48 +00:00
pname = "toolz";
2019-07-20 09:01:40 +00:00
version = "0.10.0";
2017-10-29 11:31:48 +00:00
src = fetchPypi {
inherit pname version;
2019-07-20 09:01:40 +00:00
sha256 = "08fdd5ef7c96480ad11c12d472de21acd32359996f69a5259299b540feba4560";
2017-10-29 11:31:48 +00:00
};
checkInputs = [ nose ];
checkPhase = ''
# https://github.com/pytoolz/toolz/issues/357
rm toolz/tests/test_serialization.py
nosetests toolz/tests
'';
meta = with lib; {
homepage = "https://github.com/pytoolz/toolz";
2017-10-29 11:31:48 +00:00
description = "List processing tools and functional utilities";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh ];
2017-10-29 11:31:48 +00:00
};
2018-06-27 20:12:57 +00:00
}