python: cytoolz: 0.9.0 -> 0.9.0.1

This commit is contained in:
Frederik Rietdijk 2018-04-04 20:05:38 +02:00
parent c1932f5156
commit 0fdf7778b2

View File

@ -9,12 +9,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "cytoolz"; pname = "cytoolz";
version = "0.9.0"; version = "0.9.0.1";
name = "${pname}-${version}";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "5ebb55855a8bb7800afa58e52408763935527e0305f35600c71b43c86013dec2"; sha256 = "84cc06fa40aa310f2df79dd440fc5f84c3e20f01f9f7783fc9c38d0a11ba00e5";
}; };
# Extension types # Extension types
@ -23,12 +22,6 @@ buildPythonPackage rec {
checkInputs = [ nose ]; checkInputs = [ nose ];
propagatedBuildInputs = [ toolz ]; propagatedBuildInputs = [ toolz ];
# File as accidentally included in release
# See https://github.com/pytoolz/cytoolz/issues/116#issuecomment-355770073
postPatch = ''
rm cytoolz/tests/test_curried_doctests.py
'';
# Disable failing test https://github.com/pytoolz/cytoolz/issues/97 # Disable failing test https://github.com/pytoolz/cytoolz/issues/97
checkPhase = '' checkPhase = ''
NOSE_EXCLUDE=test_curried_exceptions nosetests -v $out/${python.sitePackages} NOSE_EXCLUDE=test_curried_exceptions nosetests -v $out/${python.sitePackages}