mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #171376 from r-ryantm/auto-update/python3.10-Jug
python310Packages.jug: 2.1.1 -> 2.2.0
This commit is contained in:
commit
3b7f617c92
1 changed files with 32 additions and 19 deletions
|
@ -1,33 +1,46 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, nose, numpy
|
||||
, bottle, pyyaml, redis, six
|
||||
, zlib
|
||||
, pytestCheckHook }:
|
||||
{ lib
|
||||
, bottle
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, numpy
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, pyyaml
|
||||
, redis
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Jug";
|
||||
version = "2.1.1";
|
||||
buildInputs = [ nose numpy ];
|
||||
propagatedBuildInputs = [
|
||||
bottle
|
||||
pyyaml
|
||||
redis
|
||||
six
|
||||
pname = "jug";
|
||||
version = "2.2.0";
|
||||
format = "setuptools";
|
||||
|
||||
zlib
|
||||
];
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "8ae7bb45d4495cf3d0dc5dd9df104a35bba2ca83eb4576732cadf8469e7cf1a1";
|
||||
pname = "Jug";
|
||||
inherit version;
|
||||
hash = "sha256-2Y9xRr5DyV9UqG6tiq9rYET2Z7LaPXfzwYKKGwR3OSs=";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
pythonImportsCheck = [ "jug" ];
|
||||
propagatedBuildInputs = [
|
||||
bottle
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
numpy
|
||||
pytestCheckHook
|
||||
pyyaml
|
||||
redis
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"jug"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Task-Based Parallelization Framework";
|
||||
license = licenses.mit;
|
||||
homepage = "https://jug.readthedocs.io/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ luispedro ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue