pythonPackages.pathos: init at 0.2.0

This commit is contained in:
Frederik Rietdijk 2016-08-12 10:59:40 +02:00
parent 14f3cc170d
commit 01dca7e731

View File

@ -16669,8 +16669,27 @@ in modules // {
license = with licenses; [ bsd3 ];
homepage = http://github.com/dask/partd/;
};
};
pathos = buildPythonPackage rec {
name = "pathos-${version}";
version = "0.2.0";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pathos/${name}.tgz";
sha256 = "e35418af733bf434da83746d46acca94375d6e306b3df330b2a1808db026a188";
};
propagatedBuildInputs = with self; [ dill pox ppft multiprocess ];
# Require network
doCheck = false;
meta = {
description = "Parallel graph management and execution in heterogeneous computing";
homepage = http://www.cacr.caltech.edu/~mmckerns/pathos.htm;
license = licenses.bsd3;
};
};
patsy = buildPythonPackage rec {