python3Packages.llm-mistral: 0.14 -> 0.15

R. Ryantm b565a9ab fc02ee70

Changed files
+3 -3
pkgs
development
python-modules
llm-mistral
+3 -3
pkgs/development/python-modules/llm-mistral/default.nix
···
buildPythonPackage rec {
pname = "llm-mistral";
-
version = "0.14";
+
version = "0.15";
pyproject = true;
src = fetchFromGitHub {
owner = "simonw";
repo = "llm-mistral";
tag = version;
-
hash = "sha256-NuiqRA/SCjGq0hJsnHJ/vgdncIKu3oE9WqWGht7QRMc=";
+
hash = "sha256-4ajvsq0sm3/vdiHUuNxHsHKdX58VNNpHIwhWI0ws+08=";
};
build-system = [
···
meta = {
description = "LLM plugin providing access to Mistral models using the Mistral API";
homepage = "https://github.com/simonw/llm-mistral";
-
changelog = "https://github.com/simonw/llm-mistral/releases/tag/${version}/CHANGELOG.md";
+
changelog = "https://github.com/simonw/llm-mistral/releases/tag/${src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ philiptaron ];
};