diff --git a/pkgs/development/python-modules/sentry-sdk/default.nix b/pkgs/development/python-modules/sentry-sdk/default.nix index aac63e40f1de..16930a0c7b9d 100644 --- a/pkgs/development/python-modules/sentry-sdk/default.nix +++ b/pkgs/development/python-modules/sentry-sdk/default.nix @@ -223,12 +223,11 @@ buildPythonPackage (finalAttrs: { "test_span_templates_ai_dicts" "test_span_templates_ai_objects" ] - ++ - lib.optionals (pythonAtLeast "3.14" && stdenv.hostPlatform.isx86_64 && stdenv.hostPlatform.isDarwin) - [ - # profiler_id not populated on darwin - "test_segment_span_has_profiler_id" - ]; + ++ lib.optionals (pythonAtLeast "3.14" && stdenv.hostPlatform.isDarwin) [ + # profiler_id not populated on darwin + "test_profile_stops_when_segment_ends" + "test_segment_span_has_profiler_id" + ]; pythonImportsCheck = [ "sentry_sdk" ];