Merge pull request #31077 from luispedro/jug_update_163

pythonPackage.jug: 1.6.1 -> 1.6.3
This commit is contained in:
Jörg Thalheim
2017-11-01 10:26:52 +00:00
committed by GitHub
2 changed files with 32 additions and 25 deletions

View File

@@ -0,0 +1,31 @@
{ stdenv, buildPythonPackage, fetchPypi
, nose, numpy
, bottle, pyyaml, redis, six
, zlib }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Jug";
version = "1.6.3";
buildInputs = [ nose numpy ];
propagatedBuildInputs = [
bottle
pyyaml
redis
six
zlib
];
src = fetchPypi {
inherit pname version;
sha256 = "0dpcwjaf8zzqpdz8w8h0p7vmd6z6bzfz2805a6bdjqs9hhkhrg86";
};
meta = with stdenv.lib; {
description = "A Task-Based Parallelization Framework";
license = licenses.mit;
url = https://jug.readthedocs.io/;
maintainers = with maintainers; [ luispedro ];
};
}