python3Packages.dask-awkward: 2025.9.0 -> 2026.2.0

Diff: https://github.com/dask-contrib/dask-awkward/compare/2025.9.0...2026.2.0

Changelog: https://github.com/dask-contrib/dask-awkward/releases/tag/2026.2.0
This commit is contained in:
Gaetan Lepage
2026-02-22 09:24:06 +00:00
parent 12e5a09c59
commit 4c2f3bd9b9
@@ -24,16 +24,16 @@
uproot,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "dask-awkward";
version = "2025.9.0";
version = "2026.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "dask-contrib";
repo = "dask-awkward";
tag = version;
hash = "sha256-7z9SkkE4WqULW0m7lk+oohq1uwSO7XLcrnh6U7wqTgo=";
tag = finalAttrs.version;
hash = "sha256-iAecPdLbg1UhHn5rZEMYbeQGSpxYWkEFjq/mxzazG3E=";
};
build-system = [
@@ -60,7 +60,7 @@ buildPythonPackage rec {
pytestCheckHook
uproot
]
++ lib.concatAttrValues optional-dependencies;
++ lib.concatAttrValues finalAttrs.passthru.optional-dependencies;
pythonImportsCheck = [ "dask_awkward" ];
@@ -85,11 +85,11 @@ buildPythonPackage rec {
meta = {
description = "Native Dask collection for awkward arrays, and the library to use it";
homepage = "https://github.com/dask-contrib/dask-awkward";
changelog = "https://github.com/dask-contrib/dask-awkward/releases/tag/${src.tag}";
changelog = "https://github.com/dask-contrib/dask-awkward/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ veprbl ];
# dask-awkward is incompatible with recent dask versions.
# See https://github.com/dask-contrib/dask-awkward/pull/582 for context.
broken = lib.versionAtLeast dask.version "2025.4.0";
};
}
})