1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, dill
5, pox
6, ppft
7, multiprocess
8, pythonOlder
9}:
10
11buildPythonPackage rec {
12 pname = "pathos";
13 version = "0.2.9";
14 format = "setuptools";
15
16 disabled = pythonOlder "3.7";
17
18 src = fetchFromGitHub {
19 owner = "uqfoundation";
20 repo = pname;
21 rev = "refs/tags/pathos-${version}";
22 sha256 = "sha256-39D+itH0nkOzmh3Rpg/HXLRj2F1UPsys+iU0ZiodkM0=";
23 };
24
25 propagatedBuildInputs = [
26 dill
27 pox
28 ppft
29 multiprocess
30 ];
31
32 # Require network
33 doCheck = false;
34
35 pythonImportsCheck = [
36 "pathos"
37 ];
38
39 meta = with lib; {
40 description = "Parallel graph management and execution in heterogeneous computing";
41 homepage = "https://pathos.readthedocs.io/";
42 license = licenses.bsd3;
43 maintainers = with maintainers; [ ];
44 };
45}