From 3b3ba7e09ef8aae7271ea74d46f784370e700387 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sun, 25 Jan 2026 11:19:38 -0800 Subject: [PATCH] python3Packages.pympler: fix tests for python 3.14 --- pkgs/development/python-modules/pympler/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pympler/default.nix b/pkgs/development/python-modules/pympler/default.nix index 1ea4ea141622..745a578606fe 100644 --- a/pkgs/development/python-modules/pympler/default.nix +++ b/pkgs/development/python-modules/pympler/default.nix @@ -50,6 +50,10 @@ buildPythonPackage rec { "test_edges_new" "test_edges_old" "test_split" + ] + ++ lib.optionals (pythonAtLeast "3.14") [ + # https://github.com/pympler/pympler/issues/177 + "test_untracked_containers" ]; doCheck = stdenv.hostPlatform.isLinux;