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

View File

@ -1,9 +1,10 @@
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, llama-index-core fetchPypi,
, poetry-core llama-index-core,
, pythonOlder poetry-core,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -19,20 +20,14 @@ buildPythonPackage rec {
hash = "sha256-D9KSsvmgrUU0p5DWN0cmvIhYUxiAh+sBgWfc8jlkOSQ="; hash = "sha256-D9KSsvmgrUU0p5DWN0cmvIhYUxiAh+sBgWfc8jlkOSQ=";
}; };
build-system = [ build-system = [ poetry-core ];
poetry-core
];
dependencies = [ dependencies = [ llama-index-core ];
llama-index-core
];
# Tests are only available in the mono repo # Tests are only available in the mono repo
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "llama_index.embeddings.openai" ];
"llama_index.embeddings.openai"
];
meta = with lib; { meta = with lib; {
description = "LlamaIndex Embeddings Integration for OpenAI"; description = "LlamaIndex Embeddings Integration for OpenAI";