forked from mirrors/nixpkgs
Merge pull request #15486 from luispedro/add_jug
python-jug: init at 1.2.1
This commit is contained in:
commit
68c73ada20
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue