5 google-ai-generativelanguage,
7 google-api-python-client,
17 buildPythonPackage rec {
18 pname = "google-generativeai";
22 disabled = pythonOlder "3.9";
24 src = fetchFromGitHub {
26 repo = "generative-ai-python";
27 rev = "refs/tags/v${version}";
28 hash = "sha256-XHYO2bH95Naoha2ZLpkP0YCq60qqiQPz+YzU6O4pInQ=";
31 pythonRelaxDeps = [ "google-ai-generativelanguage" ];
33 build-system = [ setuptools ];
37 google-ai-generativelanguage
39 google-api-python-client
47 # Issue with the google.ai module. Check with the next release
50 pythonImportsCheck = [ "google.generativeai" ];
53 description = "Python client library for Google's large language model PaLM API";
54 homepage = "https://github.com/google/generative-ai-python";
55 changelog = "https://github.com/google/generative-ai-python/releases/tag/v${version}";
56 license = licenses.asl20;
57 maintainers = with maintainers; [ fab ];