forked from mirrors/nixpkgs
python.pkgs.jug: move to python modules
This commit is contained in:
parent
0671a2b6d4
commit
25ed4dcac5
31
pkgs/development/python-modules/jug/default.nix
Normal file
31
pkgs/development/python-modules/jug/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, nose, numpy
|
||||
, bottle, pyyaml, redis, six
|
||||
, zlib }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "Jug";
|
||||
version = "1.6.3";
|
||||
buildInputs = [ nose numpy ];
|
||||
propagatedBuildInputs = [
|
||||
bottle
|
||||
pyyaml
|
||||
redis
|
||||
six
|
||||
|
||||
zlib
|
||||
];
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0dpcwjaf8zzqpdz8w8h0p7vmd6z6bzfz2805a6bdjqs9hhkhrg86";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A Task-Based Parallelization Framework";
|
||||
license = licenses.mit;
|
||||
url = https://jug.readthedocs.io/;
|
||||
maintainers = with maintainers; [ luispedro ];
|
||||
};
|
||||
}
|
|
@ -6110,31 +6110,7 @@ in {
|
|||
|
||||
jsbeautifier = callPackage ../development/python-modules/jsbeautifier {};
|
||||
|
||||
jug = buildPythonPackage rec {
|
||||
version = "1.6.3";
|
||||
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 = "0dpcwjaf8zzqpdz8w8h0p7vmd6z6bzfz2805a6bdjqs9hhkhrg86";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A Task-Based Parallelization Framework";
|
||||
license = licenses.mit;
|
||||
url = https://jug.readthedocs.io/;
|
||||
maintainers = with maintainers; [ luispedro ];
|
||||
};
|
||||
};
|
||||
jug = callPackage ../development/python-modules/jug {};
|
||||
|
||||
jsmin = callPackage ../development/python-modules/jsmin { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue