2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, fetchpatch
|
2017-11-01 10:25:58 +00:00
|
|
|
, nose, numpy
|
|
|
|
, bottle, pyyaml, redis, six
|
2020-09-09 00:41:46 +01:00
|
|
|
, zlib
|
|
|
|
, pytestCheckHook }:
|
2017-11-01 10:25:58 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Jug";
|
2021-03-24 09:28:16 +00:00
|
|
|
version = "2.1.1";
|
2017-11-01 10:25:58 +00:00
|
|
|
buildInputs = [ nose numpy ];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
bottle
|
|
|
|
pyyaml
|
|
|
|
redis
|
|
|
|
six
|
|
|
|
|
|
|
|
zlib
|
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 09:28:16 +00:00
|
|
|
sha256 = "8ae7bb45d4495cf3d0dc5dd9df104a35bba2ca83eb4576732cadf8469e7cf1a1";
|
2017-11-01 10:25:58 +00:00
|
|
|
};
|
|
|
|
|
2020-09-09 00:41:46 +01:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "jug" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-01 10:25:58 +00:00
|
|
|
description = "A Task-Based Parallelization Framework";
|
|
|
|
license = licenses.mit;
|
2020-02-24 08:42:09 +00:00
|
|
|
homepage = "https://jug.readthedocs.io/";
|
2017-11-01 10:25:58 +00:00
|
|
|
maintainers = with maintainers; [ luispedro ];
|
|
|
|
};
|
|
|
|
}
|