diff --git a/pkgs/development/python-modules/pympler/default.nix b/pkgs/development/python-modules/pympler/default.nix index a75ac083f7b8..4a786a454863 100644 --- a/pkgs/development/python-modules/pympler/default.nix +++ b/pkgs/development/python-modules/pympler/default.nix @@ -45,6 +45,12 @@ buildPythonPackage rec { "test_findgarbage" "test_get_tree" "test_prune" + ] + ++ lib.optionals (pythonAtLeast "3.13") [ + # https://github.com/pympler/pympler/issues/163 + "test_edges_new" + "test_edges_old" + "test_split" ]; doCheck = stdenv.hostPlatform.isLinux;