python3Packages.google-genai: 1.20.0 -> 1.28.0

https://github.com/googleapis/python-genai/blob/v1.28.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.

Changed files
+7 -3
pkgs
development
python-modules
google-genai
+7 -3
pkgs/development/python-modules/google-genai/default.nix
···
pytestCheckHook,
requests,
setuptools,
twine,
typing-extensions,
websockets,
···
buildPythonPackage rec {
pname = "google-genai";
-
version = "1.20.0";
pyproject = true;
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-genai";
tag = "v${version}";
-
hash = "sha256-7DwLIK3/VCVSt9lq0Q0IRbhfLXOWw1TbPpDgI4jr9cg=";
};
build-system = [
···
twine
];
-
pythonRelaxDeps = [ "websockets" ];
dependencies = [
anyio
···
httpx
pydantic
requests
typing-extensions
websockets
];
···
pytestCheckHook,
requests,
setuptools,
+
tenacity,
twine,
typing-extensions,
websockets,
···
buildPythonPackage rec {
pname = "google-genai";
+
version = "1.28.0";
pyproject = true;
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-genai";
tag = "v${version}";
+
hash = "sha256-tQ6iWIUUl9mtWz6Pa0tBOsoGcFQNe62NqXhob53AVq4=";
};
build-system = [
···
twine
];
+
pythonRelaxDeps = [
+
"tenacity"
+
];
dependencies = [
anyio
···
httpx
pydantic
requests
+
tenacity
typing-extensions
websockets
];