From de12c9064d6d9d9be20349d9e7f1be7ed0e27ec9 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 23 May 2025 15:48:48 +0200 Subject: [PATCH] python312Packages.mcp: 1.9.0 -> 1.9.1 Diff: https://github.com/modelcontextprotocol/python-sdk/compare/refs/tags/v1.9.0...refs/tags/v1.9.1 Changelog: https://github.com/modelcontextprotocol/python-sdk/releases/tag/v1.9.1 --- pkgs/development/python-modules/mcp/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mcp/default.nix b/pkgs/development/python-modules/mcp/default.nix index e68a6ef12382..2603fcc4cfd5 100644 --- a/pkgs/development/python-modules/mcp/default.nix +++ b/pkgs/development/python-modules/mcp/default.nix @@ -35,14 +35,14 @@ buildPythonPackage rec { pname = "mcp"; - version = "1.9.0"; + version = "1.9.1"; pyproject = true; src = fetchFromGitHub { owner = "modelcontextprotocol"; repo = "python-sdk"; tag = "v${version}"; - hash = "sha256-UH91o2ElS0XLjH67R9QaJ/7AeX6oVkqqOc3588D4s0g="; + hash = "sha256-8u02/tHR2F1CpjcHXHC8sZC+/JrWz1satqYa/zdSGDw="; }; postPatch = '' @@ -99,11 +99,15 @@ buildPythonPackage rec { disabledTests = [ # attempts to run the package manager uv "test_command_execution" + # performance-dependent test "test_messages_are_executed_concurrently" # ExceptionGroup: unhandled errors in a TaskGroup (1 sub-exception) "test_client_session_version_negotiation_failure" + + # AttributeError: 'coroutine' object has no attribute 'client_metadata' + "TestOAuthClientProvider" ]; __darwinAllowLocalNetworking = true;