Files
nixpkgs/pkgs/development/python-modules/jug/default.nix
T

35 lines
729 B
Nix
Raw Normal View History

2019-08-05 07:34:22 -07:00
{ stdenv, buildPythonPackage, fetchPypi, fetchpatch
2017-11-01 05:25:58 -05:00
, nose, numpy
, bottle, pyyaml, redis, six
2020-09-09 00:41:46 +01:00
, zlib
, pytestCheckHook }:
2017-11-01 05:25:58 -05:00
buildPythonPackage rec {
pname = "Jug";
2020-09-30 01:24:10 +00:00
version = "2.0.3";
2017-11-01 05:25:58 -05:00
buildInputs = [ nose numpy ];
propagatedBuildInputs = [
bottle
pyyaml
redis
six
zlib
];
src = fetchPypi {
inherit pname version;
2020-09-30 01:24:10 +00:00
sha256 = "3656355c1f9cd1731065c9d589f66d33653cbe5e0879cbe5d8447b51e4ddb4ec";
2017-11-01 05:25:58 -05:00
};
2020-09-09 00:41:46 +01:00
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "jug" ];
2017-11-01 05:25:58 -05:00
meta = with stdenv.lib; {
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 05:25:58 -05:00
maintainers = with maintainers; [ luispedro ];
};
}