pythonPackages.cytoolz: 0.7.4 -> 0.8.0

wip/yesman
Frederik Rietdijk 8 years ago
parent dc04f8a2f0
commit fcdee04c9e
  1. 9
      pkgs/top-level/python-packages.nix

@ -4002,26 +4002,23 @@ in modules // {
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/";
description = "Cython implementation of Toolz: High performance functional utilities";

Loading…
Cancel
Save