3
0
Fork 0
forked from mirrors/nixpkgs

python-jug: init at 1.2.1

Python jug is a Python tool for reproducibly running tasks in parallel.
This commit is contained in:
Luis Pedro Coelho 2016-05-15 23:39:38 +02:00
parent 3373ef1349
commit 57c7fd1971

View file

@ -6660,6 +6660,31 @@ in modules // {
};
};
jug = buildPythonPackage rec {
version = "1.2.1";
name = "jug-${version}";
buildInputs = with self; [ nose numpy ];
propagatedBuildInputs = with self; [
pyyaml
redis
six
modules.sqlite3
pkgs.zlib
];
src = pkgs.fetchurl {
url = "mirror://pypi/J/Jug/Jug-${version}.tar.gz";
sha256 = "0sg3arfsmf1g4cqfdah3g6lqxj10v5780grlsaln6wj3yclp5gyx";
};
meta = {
description = "A Task-Based Parallelization Framework";
license = licenses.mit;
url = https://jug.readthedocs.org/;
maintainers = with maintainers; [ luispedro ];
};
};
jsonpatch = buildPythonPackage rec {
name = "jsonpatch-1.11";
@ -11470,7 +11495,6 @@ in modules // {
};
};
jsonpath_rw = buildPythonPackage rec {
name = "jsonpath-rw-${version}";
version = "1.4.0";