pythonPackages.cytoolz: 0.7.4 -> 0.8.0

Changed files
+3 -6
pkgs
+3 -6
pkgs/top-level/python-packages.nix
···
cytoolz = buildPythonPackage rec {
name = "cytoolz-${version}";
-
version = "0.7.4";
+
version = "0.8.0";
src = pkgs.fetchurl{
url = "mirror://pypi/c/cytoolz/cytoolz-${version}.tar.gz";
-
sha256 = "9c2e3dda8232b6cd5b84b8c8df6c8155c2adeb8734eb7ec38e189affc0f2eba5";
+
sha256 = "2239890c8fe2da3eba82947c6a68cfa406e5a5045911c9ab3de8113462372629";
};
# Extension types
disabled = isPyPy;
buildInputs = with self; [ nose ];
+
propagatedBuildInputs = with self; [ toolz ];
checkPhase = ''
nosetests -v $out/${python.sitePackages}
'';
-
-
# Several tests fail with Python 3.5
-
# https://github.com/pytoolz/cytoolz/issues/73
-
doCheck = !isPy35;
meta = {
homepage = "http://github.com/pytoolz/cytoolz/";