Skip to content

Commit 7379723

Browse files
authored
python3Packages.zarr: 3.0.1 -> 2.18.3 (#380002)
2 parents 16a1e8e + 9dd84ca commit 7379723

File tree

1 file changed

+8
-30
lines changed

1 file changed

+8
-30
lines changed

pkgs/development/python-modules/zarr/default.nix

Lines changed: 8 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -5,72 +5,50 @@
55
pythonOlder,
66

77
# build-system
8-
hatchling,
9-
hatch-vcs,
8+
setuptools-scm,
109

1110
# dependencies
1211
asciitree,
13-
donfig,
1412
numpy,
1513
fasteners,
1614
numcodecs,
1715

1816
# tests
19-
aiohttp,
20-
botocore,
21-
fsspec,
22-
hypothesis,
23-
pytest-asyncio,
2417
pytestCheckHook,
25-
requests,
26-
rich,
2718
}:
2819

2920
buildPythonPackage rec {
3021
pname = "zarr";
31-
version = "3.0.1";
22+
version = "2.18.3";
3223
format = "pyproject";
3324

3425
disabled = pythonOlder "3.8";
3526

3627
src = fetchPypi {
3728
inherit pname version;
38-
hash = "sha256-AzhZxWA9ycKeU69JTt4ktC8bdh0rtiVGaZCjuKmvt5I=";
29+
hash = "sha256-JYDYy23YRiF3GhDTHE13fcqKJ3BqGomyn0LS034t9c4=";
3930
};
4031

4132
build-system = [
42-
hatchling
43-
hatch-vcs
33+
setuptools-scm
4434
];
4535

4636
dependencies = [
4737
asciitree
48-
donfig
4938
numpy
5039
fasteners
5140
numcodecs
52-
] ++ numcodecs.optional-dependencies.crc32c;
41+
] ++ numcodecs.optional-dependencies.msgpack;
5342

5443
nativeCheckInputs = [
55-
aiohttp
56-
botocore
57-
fsspec
58-
hypothesis
59-
pytest-asyncio
6044
pytestCheckHook
61-
requests
62-
rich
63-
];
64-
65-
disabledTests = [
66-
# flaky
67-
"test_vindex"
68-
"test_zarr_hierarchy"
69-
"test_zarr_store"
7045
];
7146

7247
pythonImportsCheck = [ "zarr" ];
7348

49+
# FIXME remove once zarr's reverse dependencies support v3
50+
passthru.skipBulkUpdate = true;
51+
7452
meta = {
7553
description = "Implementation of chunked, compressed, N-dimensional arrays for Python";
7654
homepage = "https://github.com/zarr-developers/zarr";

0 commit comments

Comments
 (0)