2017-10-29 11:31:48 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
}:
|
|
|
|
|
2020-06-08 07:37:17 +00:00
|
|
|
buildPythonPackage rec {
|
2017-10-29 11:31:48 +00:00
|
|
|
pname = "toolz";
|
2020-10-22 12:17:27 +00:00
|
|
|
version = "0.11.1";
|
2017-10-29 11:31:48 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-22 12:17:27 +00:00
|
|
|
sha256 = "1grz3zvw5ixwqqlbv0n7j11mlcxb66cirh5i9x9zw8kqy0hpk967";
|
2017-10-29 11:31:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
nosetests toolz/tests
|
|
|
|
'';
|
|
|
|
|
2018-10-10 00:42:29 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/pytoolz/toolz";
|
2017-10-29 11:31:48 +00:00
|
|
|
description = "List processing tools and functional utilities";
|
2018-10-10 00:42:29 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ fridh ];
|
2017-10-29 11:31:48 +00:00
|
|
|
};
|
2018-06-27 20:12:57 +00:00
|
|
|
}
|