Merge pull request #171376 from r-ryantm/auto-update/python3.10-Jug

python310Packages.jug: 2.1.1 -> 2.2.0
main
Fabian Affolter 2 years ago committed by GitHub
commit 3b7f617c92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 49
      pkgs/development/python-modules/jug/default.nix

@ -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 ];
pname = "jug";
version = "2.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "Jug";
inherit version;
hash = "sha256-2Y9xRr5DyV9UqG6tiq9rYET2Z7LaPXfzwYKKGwR3OSs=";
};
propagatedBuildInputs = [
bottle
];
checkInputs = [
numpy
pytestCheckHook
pyyaml
redis
six
zlib
];
src = fetchPypi {
inherit pname version;
sha256 = "8ae7bb45d4495cf3d0dc5dd9df104a35bba2ca83eb4576732cadf8469e7cf1a1";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "jug" ];
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…
Cancel
Save