python312Packages.llm-gemini: 0.15 -> 0.16 (#394627)

This commit is contained in:
Pol Dellaiera
2025-03-31 07:35:33 +02:00
committed by GitHub
@@ -15,14 +15,14 @@
}:
buildPythonPackage rec {
pname = "llm-gemini";
version = "0.15";
version = "0.16";
pyproject = true;
src = fetchFromGitHub {
owner = "simonw";
repo = "llm-gemini";
tag = version;
hash = "sha256-NNzorEb3dVoKef+9eXzStcFAkQhnhMBVnwLBc2lA2+o=";
hash = "sha256-JtNFYEriiWi5fgIHM8hhMct4G7AdVKZhro9y40gxaZo=";
};
build-system = [
@@ -52,7 +52,7 @@ buildPythonPackage rec {
meta = {
description = "LLM plugin to access Google's Gemini family of models";
homepage = "https://github.com/simonw/llm-gemini";
changelog = "https://github.com/simonw/llm-gemini/releases/tag/${version}";
changelog = "https://github.com/simonw/llm-gemini/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ josh ];
};