python3Packages.spyder-kernels: disable failing test on python>=3.14

Tracking: https://github.com/NixOS/nixpkgs/issues/475732
This commit is contained in:
Gaetan Lepage
2026-02-09 15:11:45 +00:00
parent 4f9f3274ec
commit aba73afe91
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
# build-system
setuptools,
@@ -85,6 +86,10 @@ buildPythonPackage (finalAttrs: {
"test_multiprocessing"
"test_np_threshold"
"test_runfile"
]
++ lib.optionals (pythonAtLeast "3.14") [
# AttributeError: 'Frame' object has no attribute 'f_locals'. Did you mean: 'f_globals'?
"test_functions_with_locals_in_pdb"
];
pythonImportsCheck = [ "spyder_kernels" ];