From 08528a7b676164242a4fa6d2958f0ec2a7b29141 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 30 Jun 2026 21:04:54 +0200 Subject: [PATCH] python3Packages.dask: fix patch hash stability --- pkgs/development/python-modules/dask/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/dask/default.nix b/pkgs/development/python-modules/dask/default.nix index 7053d02a0dc6..89c9bcad48f4 100644 --- a/pkgs/development/python-modules/dask/default.nix +++ b/pkgs/development/python-modules/dask/default.nix @@ -56,10 +56,11 @@ buildPythonPackage (finalAttrs: { }; patches = [ - # Unit-less timedelta64 is deprecated in NumPy 2.5 (fetchpatch { - url = "https://github.com/dask/dask/commit/ade7a30c5a222f838b0f69f5a00c804e4cdf3d19.patch"; - hash = "sha256-V2jNcTfmEXjUzsXKnK2+/AWaujXN+c7JCCGojzwY5dM="; + # Unit-less timedelta64 is deprecated in NumPy 2.5 + name = "numpy-2.5-compat.patch"; + url = "https://github.com/dask/dask/commit/ade7a30c5a222f838b0f69f5a00c804e4cdf3d19.patch?full_index=1"; + hash = "sha256-4uZOHjWW+S7if47pOw9ydYAei9PsdIVqZYeYfHR93Z0="; }) ];