python310Packages.ome-zarr: 0.6.1 -> 0.8.0

This commit is contained in:
Ben Darwin 2023-07-16 19:24:27 -04:00
parent 66d1574195
commit 2987602c97

View File

@ -6,47 +6,38 @@
, pytestCheckHook
, aiohttp
, dask
, distributed
, fsspec
, numpy
, requests
, scikit-image
, s3fs
, toolz
, zarr
}:
buildPythonPackage rec {
pname = "ome-zarr";
version = "0.6.1";
version = "0.8.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "ome";
repo = "ome-zarr-py";
rev = "refs/tags/v${version}";
hash = "sha256-dpweOuqruh7mAqmSaNbehLCr8OCLe1IZNWV4bpHpTl0=";
hash = "sha256-DMBTrDyUmNsrjOsFKrqukJNZ1f/mAjz4aunNUcwVMKg=";
};
patches = [
# remove after next release:
(fetchpatch {
name = "fix-writer-bug";
url = "https://github.com/ome/ome-zarr-py/commit/c1302e05998dfe2faf94b0f958c92888681f5ffa.patch";
hash = "sha256-1WANObABUXkjqeGdnmg0qJ48RcZcuAwgitZyMwiRYUw=";
})
];
propagatedBuildInputs = [
numpy
dask
distributed
zarr
fsspec
aiohttp
requests
s3fs
scikit-image
toolz
];
] ++ fsspec.passthru.optional-dependencies.s3;
nativeCheckInputs = [
pytestCheckHook