From fe899cf2ae42fd856079645db7d24f71c06235b1 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 21 Oct 2025 13:01:51 +0000 Subject: [PATCH] python3Packages.rasterio: disable tests failing with click 8.2.1 --- pkgs/development/python-modules/rasterio/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/python-modules/rasterio/default.nix b/pkgs/development/python-modules/rasterio/default.nix index 167d493cc892..53c1513e2c9d 100644 --- a/pkgs/development/python-modules/rasterio/default.nix +++ b/pkgs/development/python-modules/rasterio/default.nix @@ -104,6 +104,15 @@ buildPythonPackage rec { "test_warp" "test_warpedvrt" "test_rio_warp" + + # AssertionError CLI exists with non-zero error code + # This is a regression introduced by https://github.com/NixOS/nixpkgs/pull/448189 + "test_sample_stdin" + "test_transform" + "test_transform_point" + "test_transform_point_dst_file" + "test_transform_point_multi" + "test_transform_point_src_file" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ "test_reproject_error_propagation" ];