mistral-vibe: 1.3.3 -> 1.3.5 (#480174)

This commit is contained in:
kirillrdy
2026-01-14 22:51:48 +00:00
committed by GitHub
2 changed files with 15 additions and 7 deletions
+6
View File
@@ -16009,6 +16009,12 @@
githubId = 346094;
name = "Michael Alyn Miller";
};
mana-byte = {
email = "manaikilaut@gmail.com";
github = "mana-byte";
githubId = 93316844;
name = "Manaiki Laut";
};
mandos = {
email = "marek.maksimczyk@mandos.net.pl";
github = "mandos";
+9 -7
View File
@@ -10,16 +10,16 @@
writableTmpDirAsHomeHook,
}:
python3Packages.buildPythonApplication rec {
python3Packages.buildPythonApplication (finalAttrs: {
pname = "mistral-vibe";
version = "1.3.3";
version = "1.3.5";
pyproject = true;
src = fetchFromGitHub {
owner = "mistralai";
repo = "mistral-vibe";
tag = "v${version}";
hash = "sha256-nW7pRSyv+t/7yatx84PMgxsHRTfRqqpy6rz+dQfLluU=";
tag = "v${finalAttrs.version}";
hash = "sha256-R+sh8xQpLDIKqQwE1JjguP4NwE2Jz7tuXNK1+EsHnrA=";
};
build-system = with python3Packages; [
@@ -51,6 +51,8 @@ python3Packages.buildPythonApplication rec {
rich
textual
textual-speedups
tree-sitter
tree-sitter-grammars.tree-sitter-bash
tomli-w
watchfiles
];
@@ -67,7 +69,6 @@ python3Packages.buildPythonApplication rec {
versionCheckHook
writableTmpDirAsHomeHook
];
versionCheckProgramArg = "--version";
versionCheckKeepEnvironment = [ "HOME" ];
pytestFlags = [ "tests/cli/test_clipboard.py" ];
@@ -96,12 +97,13 @@ python3Packages.buildPythonApplication rec {
meta = {
description = "Minimal CLI coding agent by Mistral";
homepage = "https://github.com/mistralai/mistral-vibe";
changelog = "https://github.com/mistralai/mistral-vibe/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/mistralai/mistral-vibe/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
GaetanLepage
shikanime
mana-byte
];
mainProgram = "vibe";
};
}
})