bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
86 lines
1.6 KiB
Nix
86 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
click,
|
|
cloudpickle,
|
|
dask,
|
|
fetchFromGitHub,
|
|
jinja2,
|
|
locket,
|
|
msgpack,
|
|
packaging,
|
|
psutil,
|
|
pythonOlder,
|
|
pythonRelaxDepsHook,
|
|
pyyaml,
|
|
setuptools,
|
|
setuptools-scm,
|
|
sortedcontainers,
|
|
tblib,
|
|
toolz,
|
|
tornado,
|
|
urllib3,
|
|
versioneer,
|
|
zict,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "distributed";
|
|
version = "2024.6.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dask";
|
|
repo = "distributed";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-8TShbpH+DB73G7D4pz8MHC/SPd3RaRttML0S4WaCE4k=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "versioneer[toml]==" "versioneer[toml]>=" \
|
|
--replace 'dynamic = ["version"]' 'version = "${version}"'
|
|
'';
|
|
|
|
build-system = [
|
|
pythonRelaxDepsHook
|
|
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 ];
|
|
};
|
|
}
|