python312Packages.langchain-google-genai: 3.0.0 -> 4.0.0

This commit is contained in:
Sarah Clark
2025-12-12 20:28:48 -08:00
parent 39cfea125a
commit 7fa1886603
@@ -4,13 +4,13 @@
fetchFromGitHub,
# build-system
pdm-backend,
hatchling,
# dependencies
filetype,
google-api-core,
google-auth,
google-generativeai,
google-genai,
langchain-core,
pydantic,
@@ -29,19 +29,19 @@
buildPythonPackage rec {
pname = "langchain-google-genai";
version = "3.0.0";
version = "4.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "langchain-ai";
repo = "langchain-google";
tag = "libs/genai/v${version}";
hash = "sha256-9Z0iRSICApA5/iHB7NTVYGpkktaoynG74W2mvn9zeMg=";
hash = "sha256-SVwBJbHcoD8zqBr4r1uP35/gbWZxZsD0ygJuttCdTjY=";
};
sourceRoot = "${src.name}/libs/genai";
build-system = [ pdm-backend ];
build-system = [ hatchling ];
pythonRelaxDeps = [
# Each component release requests the exact latest core.
@@ -53,7 +53,7 @@ buildPythonPackage rec {
filetype
google-api-core
google-auth
google-generativeai
google-genai
langchain-core
pydantic
];