From 17682316c15d276dcd304f8f2cb426a36bac2e87 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 26 Jan 2026 11:33:57 +0000 Subject: [PATCH] python3Packages.fastmcp: 2.14.3 -> 2.14.4 Diff: https://github.com/jlowin/fastmcp/compare/v2.14.3...v2.14.4 Changelog: https://github.com/jlowin/fastmcp/releases/tag/v2.14.4 --- .../python-modules/fastmcp/default.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/fastmcp/default.nix b/pkgs/development/python-modules/fastmcp/default.nix index 088cee19b054..558352355dd8 100644 --- a/pkgs/development/python-modules/fastmcp/default.nix +++ b/pkgs/development/python-modules/fastmcp/default.nix @@ -15,10 +15,12 @@ cyclopts, exceptiongroup, httpx, + jsonref, jsonschema-path, mcp, openai, openapi-pydantic, + packaging, platformdirs, py-key-value-aio, pydantic, @@ -39,20 +41,18 @@ pytest-asyncio, pytest-httpx, pytestCheckHook, - - pytest-timeout, }: buildPythonPackage (finalAttrs: { pname = "fastmcp"; - version = "2.14.3"; + version = "2.14.4"; pyproject = true; src = fetchFromGitHub { owner = "jlowin"; repo = "fastmcp"; tag = "v${finalAttrs.version}"; - hash = "sha256-vlwS4gpKMkmHh5Yr09ZMNFzpiEKjzJoJJNN3KxSBn3g="; + hash = "sha256-qJdOKLvxjenNCyya+XMrf3NGMaDL9LM9HsaQrhubXIY="; }; build-system = [ @@ -65,9 +65,11 @@ buildPythonPackage (finalAttrs: { cyclopts exceptiongroup httpx + jsonref jsonschema-path mcp openapi-pydantic + packaging platformdirs py-key-value-aio pydantic @@ -90,10 +92,6 @@ buildPythonPackage (finalAttrs: { pythonImportsCheck = [ "fastmcp" ]; - pytestFlags = [ - "--timeout=30" - ]; - nativeCheckInputs = [ dirty-equals email-validator @@ -103,7 +101,6 @@ buildPythonPackage (finalAttrs: { psutil pytest-asyncio pytest-httpx - pytest-timeout pytestCheckHook writableTmpDirAsHomeHook ]