python312Packages.llama-index-indices-managed-llama-cloud: format with nixfmt
This commit is contained in:
parent
c1c7bdea73
commit
791a26e6f4
1 changed files with 10 additions and 15 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue