Merge pull request #293607 from fabaff/llama-index-readers-file-bump

python311Packages.llama-index-readers-file: decouple from llama-index…
This commit is contained in:
Fabian Affolter 2024-03-06 08:13:26 +01:00 committed by GitHub
commit 2ab520caa9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,13 +6,15 @@
, poetry-core
, pymupdf
, pypdf
, pytestCheckHook
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
pname = "llama-index-readers-file";
version = "0.1.7";
inherit (llama-index-core) version src meta;
inherit (llama-index-core) src meta;
pyproject = true;
@ -40,6 +42,10 @@ buildPythonPackage rec {
pypdf
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"llama_index.readers.file"
];