f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
84 lines
1.5 KiB
Nix
84 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
click,
|
|
cloudpickle,
|
|
dask,
|
|
fetchFromGitHub,
|
|
jinja2,
|
|
locket,
|
|
msgpack,
|
|
packaging,
|
|
psutil,
|
|
pythonOlder,
|
|
pyyaml,
|
|
setuptools,
|
|
setuptools-scm,
|
|
sortedcontainers,
|
|
tblib,
|
|
toolz,
|
|
tornado,
|
|
urllib3,
|
|
versioneer,
|
|
zict,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "distributed";
|
|
version = "2024.7.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dask";
|
|
repo = "distributed";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-1VLYOUPo2esFltcoI6B/HMGyuyRq4vvkE55C8acdbG8=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "versioneer[toml]==" "versioneer[toml]>=" \
|
|
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
|
|
'';
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
versioneer
|
|
] ++ versioneer.optional-dependencies.toml;
|
|
|
|
pythonRelaxDeps = [ "dask" ];
|
|
|
|
dependencies = [
|
|
click
|
|
cloudpickle
|
|
dask
|
|
jinja2
|
|
locket
|
|
msgpack
|
|
packaging
|
|
psutil
|
|
pyyaml
|
|
sortedcontainers
|
|
tblib
|
|
toolz
|
|
tornado
|
|
urllib3
|
|
zict
|
|
];
|
|
|
|
# When tested random tests would fail and not repeatably
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "distributed" ];
|
|
|
|
meta = {
|
|
description = "Distributed computation in Python";
|
|
homepage = "https://distributed.readthedocs.io/";
|
|
changelog = "https://github.com/dask/distributed/blob/${version}/docs/source/changelog.rst";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ teh ];
|
|
};
|
|
}
|