pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / llama-index-vector-stores-google / default.nix
blobaea4617dc9925e29a2860c1812f492043f87ed62
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   google-generativeai,
6   llama-index-core,
7   poetry-core,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "llama-index-vector-stores-google";
13   version = "0.2.0";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     pname = "llama_index_vector_stores_google";
20     inherit version;
21     hash = "sha256-7BEgRLkhyCo0z3puoWcFRqa+xG6vQdkKFWvr9oz6xs4=";
22   };
24   pythonRelaxDeps = [ "google-generativeai" ];
26   build-system = [
27     poetry-core
28   ];
30   dependencies = [
31     google-generativeai
32     llama-index-core
33   ];
35   pythonImportsCheck = [ "llama_index.vector_stores.google" ];
37   meta = with lib; {
38     description = "LlamaIndex Vector Store Integration for Google";
39     homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/vector_stores/llama-index-vector-stores-google";
40     license = licenses.mit;
41     maintainers = with maintainers; [ fab ];
42   };