From aa40f80755dd23a04f28b99d66996801b01cba9b Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Sat, 20 Jun 2026 23:09:24 +0400 Subject: [PATCH] =?UTF-8?q?python3Packages.rio-tiler:=209.0.6=20=E2=86=92?= =?UTF-8?q?=209.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../python-modules/rio-tiler/default.nix | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/rio-tiler/default.nix b/pkgs/development/python-modules/rio-tiler/default.nix index ddc9904d6c37..fd2f0bb6e723 100644 --- a/pkgs/development/python-modules/rio-tiler/default.nix +++ b/pkgs/development/python-modules/rio-tiler/default.nix @@ -11,7 +11,7 @@ color-operations, h5netcdf, hatchling, - httpx, + httpx2, morecantile, numexpr, numpy, @@ -27,14 +27,14 @@ buildPythonPackage (finalAttrs: { pname = "rio-tiler"; - version = "9.0.6"; + version = "9.3.0"; pyproject = true; src = fetchFromGitHub { owner = "cogeotiff"; repo = "rio-tiler"; tag = finalAttrs.version; - hash = "sha256-oLMWrf3udqlf4SlQnBU7Stm6MzXS7EN6xWiTNtOOm4g="; + hash = "sha256-Tf3F/XRGdPDZqlXQfRc5cvGvUvu94Y6TO2cFqjFsg5g="; }; build-system = [ hatchling ]; @@ -43,7 +43,7 @@ buildPythonPackage (finalAttrs: { attrs cachetools color-operations - httpx + httpx2 morecantile numexpr numpy @@ -60,19 +60,19 @@ buildPythonPackage (finalAttrs: { obstore zarr ]; + geotiff = [ + async-geotiff + obstore + ]; }; nativeCheckInputs = [ h5netcdf pytestCheckHook + pytest-asyncio ] ++ lib.flatten (builtins.attrValues finalAttrs.passthru.optional-dependencies); - checkInputs = [ - async-geotiff - pytest-asyncio - ]; - pythonImportsCheck = [ "rio_tiler" ]; disabledTests = [ @@ -80,6 +80,8 @@ buildPythonPackage (finalAttrs: { "test_dataset_reader" # for some reason, str date representation are not the same "test_xarray_reader" + "test_geoxarray_reader_coordinates" + "test_geoxarray_reader_compat" ]; meta = {