pythonPackages.jug: 1.2.2 -> 1.3.0

Update jug to newest release.
This commit is contained in:
Luis Pedro Coelho 2016-11-07 08:38:20 +01:00
parent 897a1ba8ff
commit c92a549f6c

View File

@ -7609,25 +7609,27 @@ in {
};
jug = buildPythonPackage rec {
version = "1.2.2";
version = "1.3.0";
name = "jug-${version}";
buildInputs = with self; [ nose numpy ];
propagatedBuildInputs = with self; [
bottle
pyyaml
redis
six
pkgs.zlib
];
src = pkgs.fetchurl {
url = "mirror://pypi/J/Jug/Jug-${version}.tar.gz";
sha256 = "1riski56b93i8fddgixmmrh6cbprwv44r5wnzcqg9khky1wkg4ls";
sha256 = "1262v63f1jljfd3rqvavzc2xfcray1m7vhqav3p6wlymgd342wrl";
};
meta = {
description = "A Task-Based Parallelization Framework";
license = licenses.mit;
url = https://jug.readthedocs.org/;
url = https://jug.readthedocs.io/;
maintainers = with maintainers; [ luispedro ];
};
};