Merge pull request #20231 from luispedro/update_jug130

pythonPackages.jug: 1.2.2 -> 1.3.0
This commit is contained in:
Frederik Rietdijk 2016-11-07 11:24:07 +01:00 committed by GitHub
commit e830727dc6

View File

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