tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.cytoolz: 0.7.4 -> 0.8.0
Frederik Rietdijk
9 years ago
fcdee04c
dc04f8a2
+3
-6
1 changed file
expand all
collapse all
unified
split
pkgs
top-level
python-packages.nix
+3
-6
pkgs/top-level/python-packages.nix
···
4002
4002
4003
4003
cytoolz = buildPythonPackage rec {
4004
4004
name = "cytoolz-${version}";
4005
4005
-
version = "0.7.4";
4005
4005
+
version = "0.8.0";
4006
4006
4007
4007
src = pkgs.fetchurl{
4008
4008
url = "mirror://pypi/c/cytoolz/cytoolz-${version}.tar.gz";
4009
4009
-
sha256 = "9c2e3dda8232b6cd5b84b8c8df6c8155c2adeb8734eb7ec38e189affc0f2eba5";
4009
4009
+
sha256 = "2239890c8fe2da3eba82947c6a68cfa406e5a5045911c9ab3de8113462372629";
4010
4010
};
4011
4011
4012
4012
# Extension types
4013
4013
disabled = isPyPy;
4014
4014
4015
4015
buildInputs = with self; [ nose ];
4016
4016
+
propagatedBuildInputs = with self; [ toolz ];
4016
4017
4017
4018
checkPhase = ''
4018
4019
nosetests -v $out/${python.sitePackages}
4019
4020
'';
4020
4020
-
4021
4021
-
# Several tests fail with Python 3.5
4022
4022
-
# https://github.com/pytoolz/cytoolz/issues/73
4023
4023
-
doCheck = !isPy35;
4024
4021
4025
4022
meta = {
4026
4023
homepage = "http://github.com/pytoolz/cytoolz/";