From b43e7ce3e57a3e77964bcbfd499d70809e7ef796 Mon Sep 17 00:00:00 2001 From: K900 Date: Sat, 8 Aug 2026 16:47:15 +0300 Subject: [PATCH] python3Packages.typing-inspection: skip test broken by Python 3.14.7 (cherry picked from commit 9b55d5e439568000afa4752ea11db12f7933661e) Same with 3.13.15 as well, apparently: https://hydra.nixos.org/build/342110774/step/2/log/tail --- .../python-modules/typing-inspection/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/typing-inspection/default.nix b/pkgs/development/python-modules/typing-inspection/default.nix index ce85c5b0d5b6..2da9cae3ad60 100644 --- a/pkgs/development/python-modules/typing-inspection/default.nix +++ b/pkgs/development/python-modules/typing-inspection/default.nix @@ -31,6 +31,12 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTests = [ + # broken by intentional 3.14.7 behavior change + # reported upstream: https://github.com/pydantic/typing-inspection/issues/55 + "test_literal_values_unhashable_type" + ]; + meta = { changelog = "https://github.com/pydantic/typing-inspection/blob/${src.tag}/HISTORY.md"; description = "Runtime typing introspection tools";