about summary refs log tree commit diff
path: root/pkgs/development/python-modules/llama-index-vector-stores-google/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/llama-index-vector-stores-google/default.nix')
-rw-r--r--pkgs/development/python-modules/llama-index-vector-stores-google/default.nix25
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/llama-index-vector-stores-google/default.nix b/pkgs/development/python-modules/llama-index-vector-stores-google/default.nix
index 419357ea30b9a..fcf3e0fa9742c 100644
--- a/pkgs/development/python-modules/llama-index-vector-stores-google/default.nix
+++ b/pkgs/development/python-modules/llama-index-vector-stores-google/default.nix
@@ -1,11 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, google-generativeai
-, llama-index-core
-, poetry-core
-, pythonOlder
-, pythonRelaxDepsHook
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  google-generativeai,
+  llama-index-core,
+  poetry-core,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -21,13 +21,10 @@ buildPythonPackage rec {
     hash = "sha256-E6RNf2DzktoZW89P0VKfmeZ5SEslGkyFLRxVtnsQOYc=";
   };
 
-  pythonRelaxDeps = [
-    "google-generativeai"
-  ];
+  pythonRelaxDeps = [ "google-generativeai" ];
 
   build-system = [
     poetry-core
-    pythonRelaxDepsHook
   ];
 
   dependencies = [
@@ -35,9 +32,7 @@ buildPythonPackage rec {
     llama-index-core
   ];
 
-  pythonImportsCheck = [
-    "llama_index.vector_stores.google"
-  ];
+  pythonImportsCheck = [ "llama_index.vector_stores.google" ];
 
   meta = with lib; {
     description = "LlamaIndex Vector Store Integration for Google";