Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 625 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, nose, numpy 3, bottle, pyyaml, redis, six 4, zlib }: 5 6buildPythonPackage rec { 7 pname = "Jug"; 8 version = "1.6.7"; 9 buildInputs = [ nose numpy ]; 10 propagatedBuildInputs = [ 11 bottle 12 pyyaml 13 redis 14 six 15 16 zlib 17 ]; 18 19 src = fetchPypi { 20 inherit pname version; 21 sha256 = "a7faba838f3437163ae8459bff96e2c6ca1298312bdb9104c702685178d17269"; 22 }; 23 24 meta = with stdenv.lib; { 25 description = "A Task-Based Parallelization Framework"; 26 license = licenses.mit; 27 homepage = https://jug.readthedocs.io/; 28 maintainers = with maintainers; [ luispedro ]; 29 }; 30}