python312Packages.equinox: disable failing test

https://github.com/patrick-kidger/equinox/issues/1008

+10 -4
+10 -4
pkgs/development/python-modules/equinox/default.nix
··· 56 56 pytestCheckHook 57 57 ]; 58 58 59 - disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ 60 - # SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated! 61 - "test_filter" 62 - ]; 59 + disabledTests = 60 + [ 61 + # AssertionError: assert '<function te...n.<locals>.f>' == '<function f>' 62 + # https://github.com/patrick-kidger/equinox/issues/1008 63 + "test_function" 64 + ] 65 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 66 + # SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated! 67 + "test_filter" 68 + ]; 63 69 64 70 pythonImportsCheck = [ "equinox" ]; 65 71