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

31 lines
639 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, fetchpatch
, nose, numpy
, bottle, pyyaml, redis, six
, zlib }:
buildPythonPackage rec {
pname = "Jug";
2020-07-31 09:56:40 +01:00
version = "2.0.2";
buildInputs = [ nose numpy ];
propagatedBuildInputs = [
bottle
pyyaml
redis
six
zlib
];
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:40 +01:00
sha256 = "859a4b4cb26a0010299b189c92cfba626852c97a38e22f3d1b56e4e1d8ad8620";
};
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/";
maintainers = with maintainers; [ luispedro ];
};
}