ee8db0e84f
no longer compatibled with python2 ``` File "cytoolz/itertoolz.pyx", line 15, in init cytoolz.itertoolz from itertools import chain, islice, zip_longest ImportError: cannot import name zip_longest ```
37 lines
819 B
Nix
37 lines
819 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPyPy
|
|
, nose
|
|
, toolz
|
|
, python
|
|
, fetchpatch
|
|
, isPy27
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cytoolz";
|
|
version = "0.11.0";
|
|
disabled = isPy27 || isPyPy;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c64f3590c3eb40e1548f0d3c6b2ccde70493d0b8dc6cc7f9f3fec0bb3dcd4222";
|
|
};
|
|
|
|
checkInputs = [ nose ];
|
|
propagatedBuildInputs = [ toolz ];
|
|
|
|
# Failing test https://github.com/pytoolz/cytoolz/issues/122
|
|
checkPhase = ''
|
|
NOSE_EXCLUDE=test_introspect_builtin_modules nosetests -v $out/${python.sitePackages}
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/pytoolz/cytoolz/";
|
|
description = "Cython implementation of Toolz: High performance functional utilities";
|
|
license = "licenses.bsd3";
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
};
|
|
}
|