Commit 838e1e48 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.llama-index-readers-docling: init at 0.4.0

Llama-index readers docling integration

https://pypi.org/project/llama-index-readers-docling/
parent 243e7279
Loading
Loading
Loading
Loading
+43 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  docling-core,
  docling,
  fetchPypi,
  hatchling,
  llama-index-core,
  numpy,
}:

buildPythonPackage rec {
  pname = "llama-index-readers-docling";
  version = "0.4.0";
  pyproject = true;

  src = fetchPypi {
    pname = "llama_index_readers_docling";
    inherit version;
    hash = "sha256-b9UxJWlh/KnfTIOcKe9jiWCD1VknqeJH2hQjrDNmsOg=";
  };

  build-system = [ hatchling ];

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

  pythonImportsCheck = [ "llama_index.readers.docling" ];

  # Module has no tests
  doCheck = false;

  meta = {
    description = "Llama-index readers docling integration";
    homepage = "https://pypi.org/project/llama-index-readers-docling/";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
+4 −0
Original line number Diff line number Diff line
@@ -8556,6 +8556,10 @@ self: super: with self; {
    callPackage ../development/python-modules/llama-index-readers-database
      { };
  llama-index-readers-docling =
    callPackage ../development/python-modules/llama-index-readers-docling
      { };
  llama-index-readers-file = callPackage ../development/python-modules/llama-index-readers-file { };
  llama-index-readers-json = callPackage ../development/python-modules/llama-index-readers-json { };