Skip to content

Commit

Permalink
python312Packages.ome-zarr: 0.9.0 -> 0.10.2 (NixOS#366142)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 20, 2024
2 parents f599b63 + 6f2595b commit f0e4614
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions pkgs/development/python-modules/ome-zarr/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,30 @@
numpy,
requests,
scikit-image,
setuptools,
toolz,
zarr,
}:

buildPythonPackage rec {
pname = "ome-zarr";
version = "0.9.0";
format = "setuptools";
disabled = pythonOlder "3.6";
version = "0.10.2";
pyproject = true;

disabled = pythonOlder "3.9";

src = fetchFromGitHub {
owner = "ome";
repo = "ome-zarr-py";
rev = "refs/tags/v${version}";
hash = "sha256-YOG9+ONf2OnkSZBL/Vb8Inebx4XDSGJb2fqypaWebhY=";
tag = "v${version}";
hash = "sha256-USWMae7sBY6P/Sf4418ne/y8gZlz6mcYhSfJtlxJvGI=";
};

propagatedBuildInputs = [
build-system = [
setuptools
];

dependencies = [
numpy
dask
distributed
Expand Down Expand Up @@ -81,12 +87,12 @@ buildPythonPackage rec {
"ome_zarr.utils"
];

meta = with lib; {
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/v${version}/CHANGELOG.md";
license = licenses.bsd2;
maintainers = [ maintainers.bcdarwin ];
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.bcdarwin ];
mainProgram = "ome_zarr";
};
}

0 comments on commit f0e4614

Please sign in to comment.