python3Packages.tables: add patch for numexpr 2.13.0+ compatibility

This commit is contained in:
Robert Scott
2025-11-01 13:31:59 +00:00
parent 5e75ea03bc
commit 2aa2a574d2

View File

@@ -2,6 +2,7 @@
lib, lib,
stdenv, stdenv,
fetchPypi, fetchPypi,
fetchpatch,
buildPythonPackage, buildPythonPackage,
pythonOlder, pythonOlder,
blosc2, blosc2,
@@ -34,6 +35,15 @@ buildPythonPackage rec {
hash = "sha256-JUSBKnGG+tuoMdbdNOtJzNeI1qg/TkwrQxuDW2eWyRA="; hash = "sha256-JUSBKnGG+tuoMdbdNOtJzNeI1qg/TkwrQxuDW2eWyRA=";
}; };
patches = [
# should be included in next release
(fetchpatch {
name = "numexpr-2.13.0-compat.patch";
url = "https://github.com/PyTables/PyTables/commit/41270019ce1ffd97ce8f23b21d635e00e12b0ccb.patch";
hash = "sha256-CaDBYKiABVtlM5e9ChCsf8dWOwEnMPOIXQ100JTnlnE=";
})
];
build-system = [ build-system = [
blosc2 blosc2
cython cython