1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, dill
5, pox
6, ppft
7, multiprocess
8}:
9
10buildPythonPackage rec {
11 pname = "pathos";
12 version = "0.2.3";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "954c5b0a8b257c375e35d311c65fa62a210a3d65269195557de38418ac9f61f9";
17 };
18
19 propagatedBuildInputs = [ dill pox ppft multiprocess ];
20
21 # Require network
22 doCheck = false;
23
24 meta = with stdenv.lib; {
25 description = "Parallel graph management and execution in heterogeneous computing";
26 homepage = http://www.cacr.caltech.edu/~mmckerns/pathos.htm;
27 license = licenses.bsd3;
28 };
29
30}