From e4e15a2b808df55eb308591516ff844f960ce307 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Thu, 5 Mar 2026 22:13:23 +0400 Subject: [PATCH] python3Packages.rio-tiler: unbreak --- .../python-modules/rio-tiler/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/rio-tiler/default.nix b/pkgs/development/python-modules/rio-tiler/default.nix index 5539cd672c9b..c475020c3168 100644 --- a/pkgs/development/python-modules/rio-tiler/default.nix +++ b/pkgs/development/python-modules/rio-tiler/default.nix @@ -8,6 +8,7 @@ boto3, cachetools, color-operations, + h5netcdf, hatchling, httpx, morecantile, @@ -33,7 +34,7 @@ buildPythonPackage rec { build-system = [ hatchling ]; - propagatedBuildInputs = [ + dependencies = [ attrs cachetools color-operations @@ -48,19 +49,23 @@ buildPythonPackage rec { nativeCheckInputs = [ boto3 + h5netcdf pytestCheckHook rioxarray ]; pythonImportsCheck = [ "rio_tiler" ]; + disabledTests = [ + # Requires obstore + "test_dataset_reader" + "test_dataset_reader_variable" + ]; + meta = { description = "User friendly Rasterio plugin to read raster datasets"; homepage = "https://cogeotiff.github.io/rio-tiler/"; license = lib.licenses.bsd3; teams = [ lib.teams.geospatial ]; - # Tests broken with gdal 3.10 - # https://github.com/cogeotiff/rio-tiler/issues/769 - broken = true; }; }