Revert "python3Packages.zarr: 2.18.3 -> 3.0.1"

This reverts commit d63c6c9186.
This commit is contained in:
Ben Darwin
2025-02-07 00:49:32 -05:00
parent 5997e00931
commit 8b67f2a803
@@ -5,68 +5,43 @@
pythonOlder,
# build-system
hatchling,
hatch-vcs,
setuptools-scm,
# dependencies
asciitree,
donfig,
numpy,
fasteners,
numcodecs,
# tests
aiohttp,
botocore,
fsspec,
hypothesis,
pytest-asyncio,
pytestCheckHook,
requests,
rich,
}:
buildPythonPackage rec {
pname = "zarr";
version = "3.0.1";
version = "2.18.3";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-AzhZxWA9ycKeU69JTt4ktC8bdh0rtiVGaZCjuKmvt5I=";
hash = "sha256-JYDYy23YRiF3GhDTHE13fcqKJ3BqGomyn0LS034t9c4=";
};
build-system = [
hatchling
hatch-vcs
setuptools-scm
];
dependencies = [
asciitree
donfig
numpy
fasteners
numcodecs
] ++ numcodecs.optional-dependencies.crc32c;
] ++ numcodecs.optional-dependencies.msgpack;
nativeCheckInputs = [
aiohttp
botocore
fsspec
hypothesis
pytest-asyncio
pytestCheckHook
requests
rich
];
disabledTests = [
# flaky
"test_vindex"
"test_zarr_hierarchy"
"test_zarr_store"
];
pythonImportsCheck = [ "zarr" ];