Commit 24de62e0 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.llama-parse: format with nixfmt

parent f1e97b9b
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,17 +20,11 @@ buildPythonPackage rec {
    hash = "sha256-AYNhR7UjiHOySn3UHFq5QrAbCbktdVcPMM8oYcCEoOs=";
  };

  build-system = [
    poetry-core
  ];
  build-system = [ poetry-core ];

  dependencies = [
    llama-index-core
  ];
  dependencies = [ llama-index-core ];

  pythonImportsCheck = [
    "llama_parse"
  ];
  pythonImportsCheck = [ "llama_parse" ];

  meta = with lib; {
    description = "Parse files into RAG-Optimized formats";