f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
81 lines
1.7 KiB
Nix
81 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
dask,
|
|
numpy,
|
|
python-dateutil,
|
|
spatial-image,
|
|
xarray,
|
|
xarray-datatree,
|
|
zarr,
|
|
dask-image,
|
|
fsspec,
|
|
jsonschema,
|
|
nbmake,
|
|
pooch,
|
|
pytestCheckHook,
|
|
pytest-mypy,
|
|
urllib3,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "multiscale-spatial-image";
|
|
version = "1.0.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spatial-image";
|
|
repo = "multiscale-spatial-image";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-s/88N8IVkj+9MZYAtEJSpmmDdjIxf4S6U5gYr86Ikrw=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
dask
|
|
numpy
|
|
python-dateutil
|
|
spatial-image
|
|
xarray
|
|
xarray-datatree
|
|
zarr
|
|
];
|
|
|
|
optional-dependencies = {
|
|
dask-image = [ dask-image ];
|
|
#itk = [
|
|
# itk-filtering # not in nixpkgs yet
|
|
#];
|
|
test = [
|
|
dask-image
|
|
fsspec
|
|
#ipfsspec # not in nixpkgs
|
|
#itk-filtering # not in nixpkgs
|
|
jsonschema
|
|
nbmake
|
|
pooch
|
|
pytest-mypy
|
|
urllib3
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.test;
|
|
|
|
doCheck = false; # all test files try to download data
|
|
|
|
pythonImportsCheck = [ "multiscale_spatial_image" ];
|
|
|
|
meta = {
|
|
description = "Generate a multiscale, chunked, multi-dimensional spatial image data structure that can serialized to OME-NGFF";
|
|
homepage = "https://github.com/spatial-image/multiscale-spatial-image";
|
|
changelog = "https://github.com/spatial-image/multiscale-spatial-image/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ bcdarwin ];
|
|
};
|
|
}
|