14 buildPythonPackage rec {
19 disabled = isPy27 || isPyPy;
22 inherit pname version;
23 hash = "sha256-60U7MBghUvmRelGJt9mQRrbOkM34rrD+/0smg+YA3v0=";
31 propagatedBuildInputs = [ toolz ];
33 # tests are located in cytoolz/tests, however we can't import cytoolz
34 # from $PWD, as it will break relative imports
37 export PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH
41 # https://github.com/pytoolz/cytoolz/issues/200
42 "test_inspect_wrapped_property"
45 nativeCheckInputs = [ pytestCheckHook ];
48 homepage = "https://github.com/pytoolz/cytoolz/";
49 description = "Cython implementation of Toolz: High performance functional utilities";
50 license = licenses.bsd3;