python3Packages.ome-zarr: 0.12.2 -> 0.13.0
Diff: https://github.com/ome/ome-zarr-py/compare/v0.12.2...v0.13.0 Changelog: https://github.com/ome/ome-zarr-py/blob/v0.13.0/CHANGELOG.md
This commit is contained in:
@@ -12,25 +12,27 @@
|
||||
dask,
|
||||
fsspec,
|
||||
numpy,
|
||||
rangehttpserver,
|
||||
requests,
|
||||
scikit-image,
|
||||
toolz,
|
||||
zarr,
|
||||
|
||||
# tests
|
||||
ome-zarr-models,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "ome-zarr";
|
||||
version = "0.12.2";
|
||||
version = "0.13.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ome";
|
||||
repo = "ome-zarr-py";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-lwv6PHm41HFylt7b0d5LHCrCIXNWFNGg59VQvPXYtVc=";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-bRksh6ZKqF6cL6XnWBsQRb4gRVxH/vutKtep6SyFo48=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
@@ -38,11 +40,15 @@ buildPythonPackage rec {
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"dask"
|
||||
];
|
||||
dependencies = [
|
||||
aiohttp
|
||||
dask
|
||||
fsspec
|
||||
numpy
|
||||
rangehttpserver
|
||||
requests
|
||||
scikit-image
|
||||
toolz
|
||||
@@ -51,6 +57,7 @@ buildPythonPackage rec {
|
||||
++ fsspec.optional-dependencies.s3;
|
||||
|
||||
nativeCheckInputs = [
|
||||
ome-zarr-models
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
@@ -104,9 +111,9 @@ buildPythonPackage rec {
|
||||
meta = {
|
||||
description = "Implementation of next-generation file format (NGFF) specifications for storing bioimaging data in the cloud";
|
||||
homepage = "https://pypi.org/project/ome-zarr";
|
||||
changelog = "https://github.com/ome/ome-zarr-py/blob/${src.tag}/CHANGELOG.md";
|
||||
changelog = "https://github.com/ome/ome-zarr-py/blob/${finalAttrs.src.tag}/CHANGELOG.md";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = [ lib.maintainers.bcdarwin ];
|
||||
mainProgram = "ome_zarr";
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user