1{ stdenv, buildPythonPackage, fetchPypi
2, nose, numpy
3, bottle, pyyaml, redis, six
4, zlib }:
5
6buildPythonPackage rec {
7 name = "${pname}-${version}";
8 pname = "Jug";
9 version = "1.6.4";
10 buildInputs = [ nose numpy ];
11 propagatedBuildInputs = [
12 bottle
13 pyyaml
14 redis
15 six
16
17 zlib
18 ];
19
20 src = fetchPypi {
21 inherit pname version;
22 sha256 = "e739b20e7fe53ac50f5954b9e32568bdd92012dd4bd199d13e2a675ccd69d97d";
23 };
24
25 meta = with stdenv.lib; {
26 description = "A Task-Based Parallelization Framework";
27 license = licenses.mit;
28 homepage = https://jug.readthedocs.io/;
29 maintainers = with maintainers; [ luispedro ];
30 };
31}