nixpkgs/pkgs/development/python-modules/pathos/default.nix
Martin Weinelt ca2edfd001 python3Packages.pathos: 0.3.4 -> 0.3.5
https://github.com/uqfoundation/pathos/releases/tag/0.3.5

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:46 +01:00

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 = [ ];
};
}