Unverified Commit 5a033db5 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python313Packages.google-genai: 1.8.0 -> 1.10.0 (#399060)

parents 0483b952 30f2c3c8
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
{
  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