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
1 changed files with 17 additions and 23 deletions

View File

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