Robert Schütz
2025-04-15 21:48:47 -07:00
parent 0937fe22d8
commit 30f2c3c851
@@ -1,4 +1,5 @@
{
anyio,
buildPythonPackage,
fetchFromGitHub,
google-auth,
@@ -8,27 +9,32 @@
pytestCheckHook,
requests,
setuptools,
twine,
typing-extensions,
websockets,
}:
buildPythonPackage rec {
pname = "google-genai";
version = "1.8.0";
version = "1.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-genai";
tag = "v${version}";
hash = "sha256-6toZvocikcGpM0DKqq7/OpYDePt9Q8+WblSUJVXq6lE=";
hash = "sha256-sQWzScmp2oVsY+THOyrDzfYeI2yadFqDGdzRhiPPRaA=";
};
build-system = [ setuptools ];
build-system = [
setuptools
twine
];
pythonRelaxDeps = [ "websockets" ];
dependencies = [
anyio
google-auth
httpx
pydantic