python312Packages.equinox: disable failing test

https://github.com/patrick-kidger/equinox/issues/1008
This commit is contained in:
Gaetan Lepage
2025-04-21 11:29:40 +02:00
parent cceebcb15a
commit 41dfd84a3a
@@ -56,10 +56,16 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated!
"test_filter"
];
disabledTests =
[
# AssertionError: assert '<function te...n.<locals>.f>' == '<function f>'
# https://github.com/patrick-kidger/equinox/issues/1008
"test_function"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated!
"test_filter"
];
pythonImportsCheck = [ "equinox" ];