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

Llama-index readers docling integration

https://pypi.org/project/llama-index-readers-docling/
This commit is contained in:
Fabian Affolter
2025-09-07 21:52:01 +02:00
parent 243e727907
commit 838e1e480d
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,43 @@
{
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
View File
@@ -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 { };