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:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user