lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.cytoolz: 0.11.2 -> 0.12.0

+5 -2
+5 -2
pkgs/development/python-modules/cytoolz/default.nix
··· 3 3 , fetchPypi 4 4 , isPyPy 5 5 , pytestCheckHook 6 + , cython 6 7 , toolz 7 8 , python 8 9 , isPy27 ··· 10 11 11 12 buildPythonPackage rec { 12 13 pname = "cytoolz"; 13 - version = "0.11.2"; 14 + version = "0.12.0"; 14 15 disabled = isPy27 || isPyPy; 15 16 16 17 src = fetchPypi { 17 18 inherit pname version; 18 - sha256 = "ea23663153806edddce7e4153d1d407d62357c05120a4e8485bddf1bd5ab22b4"; 19 + sha256 = "sha256-wQWwX4XgP7zWAkQ3WWjmLkT+eYwVo1Mcki1TEBjSJBI="; 19 20 }; 21 + 22 + nativeBuildInputs = [ cython ]; 20 23 21 24 propagatedBuildInputs = [ toolz ]; 22 25