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

32 lines
657 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, nose, numpy
, bottle, pyyaml, redis, six
, zlib }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Jug";
2018-04-04 20:09:56 +02:00
version = "1.6.5";
buildInputs = [ nose numpy ];
propagatedBuildInputs = [
bottle
pyyaml
redis
six
zlib
];
src = fetchPypi {
inherit pname version;
2018-04-04 20:09:56 +02:00
sha256 = "982e18c4b837dd7828e718bb252b4ba78da3e2dfe65d1d92b85e03e9c9e0146a";
};
meta = with stdenv.lib; {
description = "A Task-Based Parallelization Framework";
license = licenses.mit;
homepage = https://jug.readthedocs.io/;
maintainers = with maintainers; [ luispedro ];
};
}