Commit 1e611eae authored by Sarah Clark's avatar Sarah Clark
Browse files

python3Packages.langchain-google-genai: 2.1.10 -> 3.0.0

parent 02066da9
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
  fetchFromGitHub,

  # build-system
  poetry-core,
  pdm-backend,

  # dependencies
  filetype,
@@ -29,19 +29,19 @@

buildPythonPackage rec {
  pname = "langchain-google-genai";
  version = "2.1.10";
  version = "3.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "langchain-ai";
    repo = "langchain-google";
    tag = "libs/genai/v${version}";
    hash = "sha256-kqII8RG1ep+n5CqKLY1v7Mc+zJh6kl1rAjMmkomfeqM=";
    hash = "sha256-9Z0iRSICApA5/iHB7NTVYGpkktaoynG74W2mvn9zeMg=";
  };

  sourceRoot = "${src.name}/libs/genai";

  build-system = [ poetry-core ];
  build-system = [ pdm-backend ];

  pythonRelaxDeps = [
    # Each component release requests the exact latest core.
@@ -85,9 +85,9 @@ buildPythonPackage rec {
    description = "LangChain integrations for Google Gemini";
    homepage = "https://github.com/langchain-ai/langchain-google/tree/main/libs/genai";
    license = lib.licenses.mit;
    maintainers = [
      lib.maintainers.eu90h
      lib.maintainers.sarahec
    maintainers = with lib.maintainers; [
      eu90h
      sarahec
    ];
  };
}