2017-10-29 11:31:48 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
}:
|
|
|
|
|
2020-06-08 08:37:17 +01:00
|
|
|
buildPythonPackage rec {
|
2017-10-29 11:31:48 +00:00
|
|
|
pname = "toolz";
|
2020-10-22 13:17:27 +01:00
|
|
|
version = "0.11.1";
|
2017-10-29 11:31:48 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-22 13:17:27 +01:00
|
|
|
sha256 = "1grz3zvw5ixwqqlbv0n7j11mlcxb66cirh5i9x9zw8kqy0hpk967";
|
2017-10-29 11:31:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
nosetests toolz/tests
|
|
|
|
'';
|
|
|
|
|
2018-10-10 01:42:29 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01: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 01:42:29 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ fridh ];
|
2017-10-29 11:31:48 +00:00
|
|
|
};
|
2018-06-27 21:12:57 +01:00
|
|
|
}
|