python3Packages.numcodecs: 0.16.1 -> 0.16.3; gcc15 compat (#472181)

This commit is contained in:
Fabián Heredia Montiel
2025-12-22 06:11:19 +00:00
committed by GitHub
2 changed files with 9 additions and 3 deletions
@@ -17,23 +17,25 @@
# optional-dependencies
crc32c,
pyzstd,
# tests
msgpack,
pytestCheckHook,
importlib-metadata,
zstd,
}:
buildPythonPackage rec {
pname = "numcodecs";
version = "0.16.1";
version = "0.16.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-xH8g1lZFRWjGtGl84CCB5ru1EvGYc4xqVvr+gCnJf7E=";
hash = "sha256-U9cFhl+q8KeSfJc683d1MgAcj7tlPeEZwehEYIYU15k=";
};
build-system = [
@@ -51,6 +53,7 @@ buildPythonPackage rec {
optional-dependencies = {
crc32c = [ crc32c ];
msgpack = [ msgpack ];
pyzstd = [ pyzstd ];
# zfpy = [ zfpy ];
};
@@ -61,6 +64,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
pytestCheckHook
importlib-metadata
zstd
]
++ lib.concatAttrValues optional-dependencies;
+3 -1
View File
@@ -10988,7 +10988,9 @@ self: super: with self; {
numbagg = callPackage ../development/python-modules/numbagg { };
numcodecs = callPackage ../development/python-modules/numcodecs { };
numcodecs = callPackage ../development/python-modules/numcodecs {
inherit (pkgs) zstd;
};
numdifftools = callPackage ../development/python-modules/numdifftools { };