From 75ef131c0863540a8538a6535e35f49bbe2500f1 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 22 Jun 2026 08:59:40 +0000 Subject: [PATCH] mistral-vibe: 2.16.1 -> 2.17.1 Diff: https://github.com/mistralai/mistral-vibe/compare/v2.16.1...v2.17.1 Changelog: https://github.com/mistralai/mistral-vibe/blob/v2.17.1/CHANGELOG.md --- pkgs/by-name/mi/mistral-vibe/package.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/mi/mistral-vibe/package.nix b/pkgs/by-name/mi/mistral-vibe/package.nix index 369e67dcf710..734c46038057 100644 --- a/pkgs/by-name/mi/mistral-vibe/package.nix +++ b/pkgs/by-name/mi/mistral-vibe/package.nix @@ -39,7 +39,7 @@ let in python3Packages.buildPythonApplication (finalAttrs: { pname = "mistral-vibe"; - version = "2.16.1"; + version = "2.17.1"; pyproject = true; __structuredAttrs = true; @@ -47,7 +47,7 @@ python3Packages.buildPythonApplication (finalAttrs: { owner = "mistralai"; repo = "mistral-vibe"; tag = "v${finalAttrs.version}"; - hash = "sha256-sv0gaEA7dvf4trxlsRQS9xA5Hiike5i/aLI3qYKP/lY="; + hash = "sha256-JrUepzbJupeyHiNz9gbX+C3kc2tJaNkxCldMELKeXcU="; }; build-system = with python3Packages; [ @@ -172,6 +172,13 @@ python3Packages.buildPythonApplication (finalAttrs: { versionCheckKeepEnvironment = [ "HOME" ]; disabledTests = [ + # vibe is spawned in a sub-process and fails to import `mcp` + # ModuleNotFoundError: No module named 'mcp' + "TestMCPConnectionPoolIntegration" + + # AssertionError: assert '32:2617357:1782120467963161870:7' != '32:2617357:1782120467963161870:7' + "test_changes_when_file_changes" + # vibe.core.llm.exceptions.BackendError: LLM backend error [mock-provider] # reason: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Missing Authority Key Identifier (_ssl.c:1032) "test_generic_backend_streaming_uses_ssl_cert_file"