python3Packages.toolz: 0.10.0 -> 0.11.1

This commit is contained in:
Nicolai Kellerer 2020-10-22 14:17:27 +02:00 committed by Jonathan Ringer
parent c1cf4abe6d
commit a103c58bab

View file

@ -6,18 +6,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "toolz"; pname = "toolz";
version = "0.10.0"; version = "0.11.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "08fdd5ef7c96480ad11c12d472de21acd32359996f69a5259299b540feba4560"; sha256 = "1grz3zvw5ixwqqlbv0n7j11mlcxb66cirh5i9x9zw8kqy0hpk967";
}; };
checkInputs = [ nose ]; checkInputs = [ nose ];
checkPhase = '' checkPhase = ''
# https://github.com/pytoolz/toolz/issues/357
rm toolz/tests/test_serialization.py
nosetests toolz/tests nosetests toolz/tests
''; '';