Gaetan Lepage
2026-02-27 18:27:00 +00:00
parent ce1584c6c4
commit 4485170735
+7 -2
View File
@@ -12,14 +12,14 @@
python3Packages.buildPythonApplication (finalAttrs: {
pname = "mistral-vibe";
version = "2.2.1";
version = "2.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mistralai";
repo = "mistral-vibe";
tag = "v${finalAttrs.version}";
hash = "sha256-vJnykMcnwQDmzq0L4OhPzortliggtK8Hz+iG2cGu8BM=";
hash = "sha256-aXRceZAW4XUAXfD8HzGnS6qkFAj6VoTwVepZJmvf48Q=";
};
build-system = with python3Packages; [
@@ -39,6 +39,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
dependencies = with python3Packages; [
agent-client-protocol
anyio
cachetools
cryptography
gitpython
giturlparse
@@ -46,6 +47,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
httpx
keyring
mcp
markdownify
mistralai
packaging
pexpect
@@ -94,6 +96,9 @@ python3Packages.buildPythonApplication (finalAttrs: {
# All snapshot tests fail with AssertionError
"tests/snapshots/"
# Try to invoke `uv run vibe`
"tests/e2e/"
# ACP tests require network access
"tests/acp/test_acp.py"
];