mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-07 22:03:37 +00:00
Diff: https://github.com/dask/distributed/compare/2026.1.2...2026.3.0 Changelog: https://github.com/dask/distributed/releases/tag/2026.3.0
78 lines
1.3 KiB
Nix
78 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
setuptools,
|
|
setuptools-scm,
|
|
|
|
# dependencies
|
|
click,
|
|
cloudpickle,
|
|
dask,
|
|
jinja2,
|
|
locket,
|
|
msgpack,
|
|
packaging,
|
|
psutil,
|
|
pyyaml,
|
|
sortedcontainers,
|
|
tblib,
|
|
toolz,
|
|
tornado,
|
|
urllib3,
|
|
zict,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "distributed";
|
|
version = "2026.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dask";
|
|
repo = "distributed";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-lStJwJbhuyPuJ7Nbcm6S6f7tq1T5DtAy8zE1p2Mdrt0=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
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/releases/tag/${finalAttrs.src.tag}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ teh ];
|
|
};
|
|
})
|