linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / jug / default.nix
blob7646c007818cbfb0da117f19866c0cf18d63d32b
1 { lib, buildPythonPackage, fetchPypi, fetchpatch
2 , nose, numpy
3 , bottle, pyyaml, redis, six
4 , zlib
5 , pytestCheckHook }:
7 buildPythonPackage rec {
8   pname = "Jug";
9   version = "2.0.3";
10   buildInputs = [ nose numpy ];
11   propagatedBuildInputs = [
12     bottle
13     pyyaml
14     redis
15     six
17     zlib
18   ];
20   src = fetchPypi {
21     inherit pname version;
22     sha256 = "3656355c1f9cd1731065c9d589f66d33653cbe5e0879cbe5d8447b51e4ddb4ec";
23   };
25   checkInputs = [ pytestCheckHook ];
26   pythonImportsCheck = [ "jug" ];
28   meta = with lib; {
29     description = "A Task-Based Parallelization Framework";
30     license = licenses.mit;
31     homepage = "https://jug.readthedocs.io/";
32     maintainers = with maintainers; [ luispedro ];
33   };