nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 42 lines 799 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 dill, 5 fetchFromGitHub, 6 multiprocess, 7 pox, 8 ppft, 9}: 10 11buildPythonPackage rec { 12 pname = "pathos"; 13 version = "0.3.5"; 14 format = "setuptools"; 15 16 src = fetchFromGitHub { 17 owner = "uqfoundation"; 18 repo = "pathos"; 19 tag = version; 20 hash = "sha256-9ejrHHgSbDrbuq1bktyiKPJnQ1l52ug/lnJJbac7x4s="; 21 }; 22 23 propagatedBuildInputs = [ 24 dill 25 pox 26 ppft 27 multiprocess 28 ]; 29 30 # Require network 31 doCheck = false; 32 33 pythonImportsCheck = [ "pathos" ]; 34 35 meta = { 36 description = "Parallel graph management and execution in heterogeneous computing"; 37 homepage = "https://pathos.readthedocs.io/"; 38 changelog = "https://github.com/uqfoundation/pathos/releases/tag/${src.tag}"; 39 license = lib.licenses.bsd3; 40 maintainers = [ ]; 41 }; 42}