python312Packages.llama-index-embeddings-openai: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-27 08:54:02 +02:00
parent e03f1a96fa
commit c716731786
1 changed files with 10 additions and 15 deletions

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, llama-index-core
, poetry-core
, pythonOlder
{
lib,
buildPythonPackage,
fetchPypi,
llama-index-core,
poetry-core,
pythonOlder,
}:
buildPythonPackage rec {
@ -19,20 +20,14 @@ buildPythonPackage rec {
hash = "sha256-D9KSsvmgrUU0p5DWN0cmvIhYUxiAh+sBgWfc8jlkOSQ=";
};
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.embeddings.openai"
];
pythonImportsCheck = [ "llama_index.embeddings.openai" ];
meta = with lib; {
description = "LlamaIndex Embeddings Integration for OpenAI";