about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pathos/default.nix
blob: 814854596e9db0cc3333fb98116ac62b413beb0b (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.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "954c5b0a8b257c375e35d311c65fa62a210a3d65269195557de38418ac9f61f9";
  };

  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;
  };

}