Commit 3025317a authored by Fabian Affolter's avatar Fabian Affolter
Browse files

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

parent 7ed8d234
Loading
Loading
Loading
Loading
+10 −13
Original line number Diff line number Diff line
{ 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";