summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/llama-index-readers-database/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/llama-index-readers-database/default.nix')
-rw-r--r--pkgs/development/python-modules/llama-index-readers-database/default.nix27
1 files changed, 11 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/llama-index-readers-database/default.nix b/pkgs/development/python-modules/llama-index-readers-database/default.nix
index d7aa3bf51e03..a0ded9aaddfe 100644
--- a/pkgs/development/python-modules/llama-index-readers-database/default.nix
+++ b/pkgs/development/python-modules/llama-index-readers-database/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, fetchPypi
-, llama-index-core
-, poetry-core
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ fetchPypi,
+ llama-index-core,
+ poetry-core,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -20,20 +21,14 @@ buildPythonPackage rec {
hash = "sha256-x71+szDNDZNaVc8AMXruKvxSNXg561ibE2+kx53zHfI=";
};
- build-system = [
- poetry-core
- ];
+ build-system = [ poetry-core ];
- dependencies = [
- llama-index-core
- ];
+ dependencies = [ llama-index-core ];
# Tests are only available in the mono repo
doCheck = false;
- pythonImportsCheck = [
- "llama_index.readers.database"
- ];
+ pythonImportsCheck = [ "llama_index.readers.database" ];
meta = with lib; {
description = "LlamaIndex Readers Integration for Databases";