From 32d47ec38b194b32d26dfef4a7cc84be53d60f16 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 11 Jul 2026 23:57:59 +0200 Subject: [PATCH] python3Packages.roman-numerals: ignore pytest10 deprecations --- pkgs/development/python-modules/roman-numerals/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/roman-numerals/default.nix b/pkgs/development/python-modules/roman-numerals/default.nix index 0360ef4b7909..c16b1d37c17f 100644 --- a/pkgs/development/python-modules/roman-numerals/default.nix +++ b/pkgs/development/python-modules/roman-numerals/default.nix @@ -24,6 +24,10 @@ buildPythonPackage (finalAttrs: { nativeCheckInputs = [ pytestCheckHook ]; + pytestFlags = [ + "-Wignore::pytest.PytestRemovedIn10Warning" + ]; + pythonImportsCheck = [ "roman_numerals" ]; meta = {