From 53fa39940c6c8358fcd427b4f1ea28e831d04947 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 13 Nov 2025 10:25:03 +0000 Subject: [PATCH] python3Packages.dask-image: 2024.5.3 -> 2025.11.0 Diff: https://github.com/dask/dask-image/compare/v2024.5.3...v2025.11.0 Changelog: https://github.com/dask/dask-image/releases/tag/v2025.11.0 --- .../python-modules/dask-image/default.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/dask-image/default.nix b/pkgs/development/python-modules/dask-image/default.nix index f22fb5bda5e9..c022db21a26a 100644 --- a/pkgs/development/python-modules/dask-image/default.nix +++ b/pkgs/development/python-modules/dask-image/default.nix @@ -16,30 +16,23 @@ # tests pyarrow, + pytest-flake8, pytestCheckHook, scikit-image, }: buildPythonPackage rec { pname = "dask-image"; - version = "2024.5.3"; + version = "2025.11.0"; pyproject = true; src = fetchFromGitHub { owner = "dask"; repo = "dask-image"; tag = "v${version}"; - hash = "sha256-kXCAqJ2Zgo/2Khvo2YcK+n4oGM219GyQ2Hsq9re1Lac="; + hash = "sha256-+nzYthnobcemunMcAWwRpHOQy6yFtjdib/7VZqWEiqc="; }; - postPatch = '' - substituteInPlace dask_image/ndinterp/__init__.py \ - --replace-fail "out_bounds.ptp(axis=1)" "np.ptp(out_bounds, axis=1)" - - substituteInPlace tests/test_dask_image/test_imread/test_core.py \ - --replace-fail "fh.save(" "fh.write(" - ''; - build-system = [ setuptools setuptools-scm @@ -55,6 +48,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pyarrow + pytest-flake8 pytestCheckHook scikit-image ];