nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.google-genai: 1.19.0 -> 1.20.0

Diff: https://github.com/googleapis/python-genai/compare/refs/tags/v1.19.0...refs/tags/v1.20.0

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

+11 -2
+11 -2
pkgs/development/python-modules/google-genai/default.nix
··· 1 1 { 2 + aiohttp, 2 3 anyio, 3 4 buildPythonPackage, 4 5 fetchFromGitHub, 5 6 google-auth, 6 7 httpx, 7 8 lib, 9 + packaging, 10 + pkginfo, 8 11 pydantic, 9 12 pytestCheckHook, 10 13 requests, ··· 19 16 20 17 buildPythonPackage rec { 21 18 pname = "google-genai"; 22 - version = "1.19.0"; 19 + version = "1.20.0"; 23 20 pyproject = true; 24 21 25 22 src = fetchFromGitHub { 26 23 owner = "googleapis"; 27 24 repo = "python-genai"; 28 25 tag = "v${version}"; 29 - hash = "sha256-p9W34v1ToLwketM+wOfrouLLl9pFBljL5doykuZRINo="; 26 + hash = "sha256-7DwLIK3/VCVSt9lq0Q0IRbhfLXOWw1TbPpDgI4jr9cg="; 30 27 }; 31 28 32 29 build-system = [ 30 + packaging 31 + pkginfo 33 32 setuptools 34 33 twine 35 34 ]; ··· 47 42 typing-extensions 48 43 websockets 49 44 ]; 45 + 46 + optional-dependencies = { 47 + aiohttp = [ aiohttp ]; 48 + }; 50 49 51 50 pythonImportsCheck = [ "google.genai" ]; 52 51