Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pathos / default.nix
blobfd6bd238d1e09c334f927a8f1e22b012816082aa
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , dill
5 , pox
6 , ppft
7 , multiprocess
8 }:
10 buildPythonPackage rec {
11   pname = "pathos";
12   version = "0.2.5";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "21ae2cb1d5a76dcf57d5fe93ae8719c7339f467e246163650c08ccf35b87c846";
17   };
19   propagatedBuildInputs = [ dill pox ppft multiprocess ];
21   # Require network
22   doCheck = false;
24   meta = with lib; {
25     description = "Parallel graph management and execution in heterogeneous computing";
26     homepage = "https://github.com/uqfoundation/pathos/";
27     license = licenses.bsd3;
28   };