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/
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
@@ -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
|
||||
{ };
|
||||
|
||||
Reference in New Issue
Block a user