1{ stdenv, buildPythonPackage, fetchPypi, fetchpatch
2, nose, numpy
3, bottle, pyyaml, redis, six
4, zlib, isPy38
5}:
6
7buildPythonPackage rec {
8 pname = "Jug";
9 version = "1.6.9";
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 = "0193hp8ap6caw57jdch3vw0hl5m8942lxhjdsfaxk4bfb239l5kz";
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 broken = true;
31 };
32}