python312Packages.llama-index-multi-modal-llms-openai: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-10 09:04:23 +02:00
parent 7ed8d23483
commit 3025317a39
1 changed files with 10 additions and 13 deletions

View File

@ -1,10 +1,11 @@
{ lib
, buildPythonPackage
, fetchPypi
, llama-index-core
, llama-index-llms-openai
, poetry-core
, pythonOlder
{
lib,
buildPythonPackage,
fetchPypi,
llama-index-core,
llama-index-llms-openai,
poetry-core,
pythonOlder,
}:
buildPythonPackage rec {
@ -20,9 +21,7 @@ buildPythonPackage rec {
hash = "sha256-miN/T4htHiDCfpST6As+H4dThZSB/xtY/iW3qjmxmKI=";
};
build-system = [
poetry-core
];
build-system = [ poetry-core ];
dependencies = [
llama-index-core
@ -32,9 +31,7 @@ buildPythonPackage rec {
# Tests are only available in the mono repo
doCheck = false;
pythonImportsCheck = [
"llama_index.multi_modal_llms.openai"
];
pythonImportsCheck = [ "llama_index.multi_modal_llms.openai" ];
meta = with lib; {
description = "LlamaIndex Multi-Modal-Llms Integration for OpenAI";