nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 45 lines 798 B view raw
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.8"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchFromGitHub { 19 owner = "uqfoundation"; 20 repo = pname; 21 rev = "${pname}-${version}"; 22 sha256 = "sha256-71hMaG+3FbWMtGqwcDOZ8uit0DsHEoc9H2GXfX7TeoM="; 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}