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-08 06:33:31 +00:00
version = "1.6.6";
buildInputs = [ nose numpy ];
propagatedBuildInputs = [
bottle
pyyaml
redis
six
zlib
];
src = fetchPypi {
inherit pname version;
2018-04-08 06:33:31 +00:00
sha256 = "897ffbbbe8061772c238b4f436512ea3696016a04473c45a716d78c0de103ec1";
};
meta = with stdenv.lib; {
description = "A Task-Based Parallelization Framework";
license = licenses.mit;
homepage = https://jug.readthedocs.io/;
maintainers = with maintainers; [ luispedro ];
};
}