Commit 4c2f3bd9 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent 12e5a09c
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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";
  };
}
})