Commit c7167317 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

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

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