From 8f6b14bc044db2df93bd464259bd43e28f89349a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 14 Jul 2026 00:51:35 +0200 Subject: [PATCH] python3Packages.astropy-healpix: ignore pytest 10 deprecations --- pkgs/development/python-modules/astropy-healpix/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/astropy-healpix/default.nix b/pkgs/development/python-modules/astropy-healpix/default.nix index 261309e70c68..82131eb28075 100644 --- a/pkgs/development/python-modules/astropy-healpix/default.nix +++ b/pkgs/development/python-modules/astropy-healpix/default.nix @@ -42,6 +42,10 @@ buildPythonPackage (finalAttrs: { hypothesis ]; + pytestFlags = [ + "-Wignore::pytest.PytestRemovedIn10Warning" + ]; + disabledTests = lib.optional (!stdenv.hostPlatform.isDarwin) "test_interpolate_bilinear_skycoord"; # tests must be run in the build directory