Unverified Commit 46a49713 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

mistral-vibe: 2.2.1 -> 2.3.0 (#494888)

parents 2d5980c8 44851707
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -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"
  ];