mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-13 21:56:29 +01:00
https://github.com/uqfoundation/pathos/releases/tag/0.3.5 This commit was automatically generated using update-python-libraries.
42 lines
799 B
Nix
42 lines
799 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
dill,
|
|
fetchFromGitHub,
|
|
multiprocess,
|
|
pox,
|
|
ppft,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pathos";
|
|
version = "0.3.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "uqfoundation";
|
|
repo = "pathos";
|
|
tag = version;
|
|
hash = "sha256-9ejrHHgSbDrbuq1bktyiKPJnQ1l52ug/lnJJbac7x4s=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
dill
|
|
pox
|
|
ppft
|
|
multiprocess
|
|
];
|
|
|
|
# Require network
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pathos" ];
|
|
|
|
meta = {
|
|
description = "Parallel graph management and execution in heterogeneous computing";
|
|
homepage = "https://pathos.readthedocs.io/";
|
|
changelog = "https://github.com/uqfoundation/pathos/releases/tag/${src.tag}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|