Commit 243e7279 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.llama-index-node-parser-docling: init at 0.4.0

Llama-index node_parser docling integration

https://pypi.org/project/llama-index-node-parser-docling/
parent bf53259e
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  docling-core,
  fetchPypi,
  hatchling,
  llama-index-core,
}:

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

  src = fetchPypi {
    pname = "llama_index_node_parser_docling";
    inherit version;
    hash = "sha256-3D2X5sKAaweJG5w5qVeCEMgvKPZVUdI4/GsSwB9zfQ4=";
  };

  build-system = [ hatchling ];

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

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

  # Module has no tests
  doCheck = false;

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