1{ lib 2, buildPythonPackage 3, fetchPypi 4, dill 5, pox 6, ppft 7, multiprocess 8}: 9 10buildPythonPackage rec { 11 pname = "pathos"; 12 version = "0.2.5"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "21ae2cb1d5a76dcf57d5fe93ae8719c7339f467e246163650c08ccf35b87c846"; 17 }; 18 19 propagatedBuildInputs = [ dill pox ppft multiprocess ]; 20 21 # Require network 22 doCheck = false; 23 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 }; 29 30}