c-blosc2: 2.19.1 -> 2.21.1 (#433169)

This commit is contained in:
Robert Scott
2025-09-14 11:31:21 +01:00
committed by GitHub
2 changed files with 9 additions and 4 deletions
+2 -2
View File
@@ -14,13 +14,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "c-blosc2";
version = "2.19.1";
version = "2.21.1";
src = fetchFromGitHub {
owner = "Blosc";
repo = "c-blosc2";
rev = "v${finalAttrs.version}";
sha256 = "sha256-t+zh89VFVnqYzxqZh13hS6iieSqbG+DTPzI4aXwY8os=";
sha256 = "sha256-Ra/LhLV78Gr2rXIKZIFx3+oJ+Fk03tfmguoGL4P9J5c=";
};
# https://github.com/NixOS/nixpkgs/issues/144170
@@ -32,14 +32,14 @@
buildPythonPackage rec {
pname = "blosc2";
version = "3.6.1";
version = "3.7.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Blosc";
repo = "python-blosc2";
tag = "v${version}";
hash = "sha256-MSGuG9Vqniz6gie0je84XNTHLZaZho9tmqELMKoDh/U=";
hash = "sha256-mA7/8i77wtl9b6IT4Wp/uFDYp/IacnPnAsRoXe64+z4=";
};
nativeBuildInputs = [
@@ -75,6 +75,11 @@ buildPythonPackage rec {
]
++ lib.optionals runTorchTests [ torch ];
disabledTests = [
# attempts external network requests
"test_with_remote"
];
passthru.c-blosc2 = c-blosc2;
meta = with lib; {