From 0e9f1ddd1bd80990ffff4cb37c7d35d1db0e14c1 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sun, 14 Jun 2026 13:48:10 -0700 Subject: [PATCH] python3Packages.a2a-sdk: disable tests that fail on Darwin --- .../python-modules/a2a-sdk/default.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/a2a-sdk/default.nix b/pkgs/development/python-modules/a2a-sdk/default.nix index 347dbb2c2317..7a66bc4e917c 100644 --- a/pkgs/development/python-modules/a2a-sdk/default.nix +++ b/pkgs/development/python-modules/a2a-sdk/default.nix @@ -27,6 +27,7 @@ sqlalchemy, sse-starlette, starlette, + stdenv, uv-dynamic-versioning, uvicorn, }: @@ -104,10 +105,18 @@ buildPythonPackage (finalAttrs: { pythonImportsCheck = [ "a2a" ]; - disabledTests = lib.optionals (pythonAtLeast "3.14") [ - # _pickle.PicklingError: Can't pickle local object .openap… + "test_notification_triggering_with_in_message_config_e2e" + "test_notification_triggering_after_config_change_e2e" + "test_trace_function_sync_attribute_extractor_error_logged" + ]; meta = { description = "Python SDK for the Agent2Agent (A2A) Protocol";