5 google-ai-generativelanguage,
7 google-api-python-client,
18 buildPythonPackage rec {
19 pname = "google-generativeai";
23 disabled = pythonOlder "3.9";
25 src = fetchFromGitHub {
27 repo = "generative-ai-python";
28 rev = "refs/tags/v${version}";
29 hash = "sha256-R1ndVzGKXWRNkWvvuP4HFBXbuk54bCZZvMJY+yalJGU=";
32 pythonRelaxDeps = [ "google-ai-generativelanguage" ];
34 build-system = [ setuptools ];
36 nativeBuildInputs = [ pythonRelaxDepsHook ];
39 google-ai-generativelanguage
41 google-api-python-client
49 # Issue with the google.ai module. Check with the next release
52 pythonImportsCheck = [ "google.generativeai" ];
55 description = "Python client library for Google's large language model PaLM API";
56 homepage = "https://github.com/google/generative-ai-python";
57 changelog = "https://github.com/google/generative-ai-python/releases/tag/v${version}";
58 license = licenses.asl20;
59 maintainers = with maintainers; [ fab ];