python3Packages.rio-tiler: 8.0.5 -> 9.0.4

This commit is contained in:
Augustin Trancart
2026-04-01 10:43:58 +02:00
parent c071522005
commit 7dd6d4b8d0
@@ -4,6 +4,7 @@
fetchFromGitHub,
pytestCheckHook,
async-geotiff,
attrs,
boto3,
cachetools,
@@ -17,21 +18,23 @@
obstore,
pydantic,
pystac,
pytest-asyncio,
rasterio,
rioxarray,
typing-extensions,
zarr,
}:
buildPythonPackage (finalAttrs: {
pname = "rio-tiler";
version = "8.0.5";
version = "9.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "cogeotiff";
repo = "rio-tiler";
tag = finalAttrs.version;
hash = "sha256-FOTwP4iTLfWl81KKarLOQQyp4gpi6Q+pjUXfZrXXsfo=";
hash = "sha256-R8vmb33ZfKGqRLkJ55npL031Gnc7HTUDeWiCvtaLsiM=";
};
build-system = [ hatchling ];
@@ -47,6 +50,7 @@ buildPythonPackage (finalAttrs: {
pydantic
pystac
rasterio
typing-extensions
];
optional-dependencies = {
@@ -64,11 +68,18 @@ buildPythonPackage (finalAttrs: {
]
++ lib.flatten (builtins.attrValues finalAttrs.passthru.optional-dependencies);
checkInputs = [
async-geotiff
pytest-asyncio
];
pythonImportsCheck = [ "rio_tiler" ];
disabledTests = [
# Requires network access
"test_dataset_reader"
# for some reason, str date representation are not the same
"test_xarray_reader"
];
meta = {