python312Packages.llama-index-indices-managed-llama-cloud: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-27 08:55:50 +02:00
parent c1c7bdea73
commit 791a26e6f4
1 changed files with 10 additions and 15 deletions

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, llama-index-core
, pythonOlder
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
llama-index-core,
pythonOlder,
}:
buildPythonPackage rec {
@ -19,20 +20,14 @@ buildPythonPackage rec {
hash = "sha256-dLOw6ev500jTBU+fwMZXAxrM65NRwxEWrY1aeuRyn1w=";
};
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.indices.managed.llama_cloud"
];
pythonImportsCheck = [ "llama_index.indices.managed.llama_cloud" ];
meta = with lib; {
description = "LlamaCloud Index and Retriever";