mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
python-jug: init at 1.2.1
Python jug is a Python tool for reproducibly running tasks in parallel.
This commit is contained in:
parent
3373ef1349
commit
57c7fd1971
@ -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 {
|
jsonpatch = buildPythonPackage rec {
|
||||||
name = "jsonpatch-1.11";
|
name = "jsonpatch-1.11";
|
||||||
|
|
||||||
@ -11470,7 +11495,6 @@ in modules // {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
jsonpath_rw = buildPythonPackage rec {
|
jsonpath_rw = buildPythonPackage rec {
|
||||||
name = "jsonpath-rw-${version}";
|
name = "jsonpath-rw-${version}";
|
||||||
version = "1.4.0";
|
version = "1.4.0";
|
||||||
|
Loading…
Reference in New Issue
Block a user