Merge pull request #8623 from FRidh/cytoolz

cytoolz: init at 0.7.3
This commit is contained in:
lethalman 2015-07-04 13:08:15 +02:00
commit 2d49c104a3

View file

@ -2159,6 +2159,22 @@ let
platforms = platforms.all;
};
};
cytoolz = buildPythonPackage rec {
name = "cytoolz-${version}";
version = "0.7.3";
src = pkgs.fetchurl{
url = "https://pypi.python.org/packages/source/c/cytoolz/cytoolz-${version}.tar.gz";
md5 = "e9f0441d9f340a23c60357f68f25d163";
};
meta = {
homepage = "http://github.com/pytoolz/cytoolz/";
description = "Cython implementation of Toolz: High performance functional utilities";
license = "licenses.bsd3";
};
};
cryptacular = buildPythonPackage rec {
name = "cryptacular-1.4.1";