Merge pull request #302760 from r-ryantm/auto-update/python311Packages.llama-index-readers-file

python311Packages.llama-index-readers-file: 0.1.13 -> 0.1.15
This commit is contained in:
Fabian Affolter 2024-04-09 10:35:40 +02:00 committed by GitHub
commit 464ac087bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,19 +1,20 @@
{ lib {
, beautifulsoup4 lib,
, buildPythonPackage beautifulsoup4,
, fetchPypi buildPythonPackage,
, llama-index-core fetchPypi,
, poetry-core llama-index-core,
, pymupdf poetry-core,
, pypdf pymupdf,
, pythonOlder pypdf,
, pythonRelaxDepsHook pythonOlder,
, striprtf pythonRelaxDepsHook,
striprtf,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "llama-index-readers-file"; pname = "llama-index-readers-file";
version = "0.1.13"; version = "0.1.15";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -21,7 +22,7 @@ buildPythonPackage rec {
src = fetchPypi { src = fetchPypi {
pname = "llama_index_readers_file"; pname = "llama_index_readers_file";
inherit version; inherit version;
hash = "sha256-gw8G7Hs0Q3/Du18mjSNcXHZAKWrbFI2Pkid9zrfwhG0="; hash = "sha256-mAh9mDofLSaWGAUhfxPSSw8jy76OMtIyeuhrHuZo07I=";
}; };
pythonRelaxDeps = [ pythonRelaxDeps = [
@ -29,14 +30,9 @@ buildPythonPackage rec {
"pypdf" "pypdf"
]; ];
pythonRemoveDeps = [ build-system = [ poetry-core ];
"bs4"
];
build-system = [ nativeBuildInputs = [ pythonRelaxDepsHook ];
poetry-core
pythonRelaxDepsHook
];
dependencies = [ dependencies = [
beautifulsoup4 beautifulsoup4
@ -49,9 +45,7 @@ buildPythonPackage rec {
# Tests are only available in the mono repo # Tests are only available in the mono repo
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "llama_index.readers.file" ];
"llama_index.readers.file"
];
meta = with lib; { meta = with lib; {
description = "LlamaIndex Readers Integration for files"; description = "LlamaIndex Readers Integration for files";