about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pathos/default.nix
blob: 081e5bb3aa486d8f35062078a2eac6607d44b421 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv
, buildPythonPackage
, fetchPypi
, dill
, pox
, ppft
, multiprocess
}:

buildPythonPackage rec {
  pname = "pathos";
  version = "0.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e35418af733bf434da83746d46acca94375d6e306b3df330b2a1808db026a188";
  };

  propagatedBuildInputs = [ dill pox ppft multiprocess ];

  # Require network
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Parallel graph management and execution in heterogeneous computing";
    homepage = http://www.cacr.caltech.edu/~mmckerns/pathos.htm;
    license = licenses.bsd3;
  };

}