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

This commit is contained in:
Fabian Affolter 2024-04-07 10:52:16 +02:00
parent ff95a00baa
commit 4af12b60c4
1 changed files with 13 additions and 20 deletions

View File

@ -1,11 +1,12 @@
{ lib
, buildPythonPackage
, fetchPypi
, google-generativeai
, llama-index-core
, poetry-core
, pythonOlder
, pythonRelaxDepsHook
{
lib,
buildPythonPackage,
fetchPypi,
google-generativeai,
llama-index-core,
poetry-core,
pythonOlder,
pythonRelaxDepsHook,
}:
buildPythonPackage rec {
@ -21,17 +22,11 @@ buildPythonPackage rec {
hash = "sha256-mJ+H4klmGlpTGXLErlLNWH5IUpGyXnbAhNsgT5fwCHs=";
};
pythonRelaxDeps = [
"google-generativeai"
];
pythonRelaxDeps = [ "google-generativeai" ];
build-system = [
poetry-core
];
build-system = [ poetry-core ];
nativeBuildInputs = [
pythonRelaxDepsHook
];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
google-generativeai
@ -41,9 +36,7 @@ buildPythonPackage rec {
# Tests are only available in the mono repo
doCheck = false;
pythonImportsCheck = [
"llama_index.embeddings.google"
];
pythonImportsCheck = [ "llama_index.embeddings.google" ];
meta = with lib; {
description = "LlamaIndex Embeddings Integration for Google";