mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 20:06:33 +01:00
Diff: https://github.com/dask/distributed/compare/2026.1.1...2026.1.2 Changelog: https://github.com/dask/distributed/releases/tag/2026.1.2
77 lines
1.3 KiB
Nix
77 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.1.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dask";
|
|
repo = "distributed";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-VkZ9rd+eVyfwfRMSAqriR8UjdlqsqHYCkCHZJnk0VOU=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
})
|