Skip to content

Commit

Permalink
Merge pull request #303719 from fabaff/llama-index-readers-s3-bump
Browse files Browse the repository at this point in the history
python312Packages.llama-index-readers-s3: 0.1.5 -> 0.1.7
  • Loading branch information
fabaff authored Apr 13, 2024
2 parents bc08da9 + 1006546 commit 71e29c2
Showing 1 changed file with 13 additions and 16 deletions.
29 changes: 13 additions & 16 deletions pkgs/development/python-modules/llama-index-readers-s3/default.nix
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, llama-index-core
, llama-index-readers-file
, poetry-core
, pythonOlder
, s3fs
{
lib,
buildPythonPackage,
fetchPypi,
llama-index-core,
llama-index-readers-file,
poetry-core,
pythonOlder,
s3fs,
}:

buildPythonPackage rec {
pname = "llama-index-readers-s3";
version = "0.1.5";
version = "0.1.7";
pyproject = true;

disabled = pythonOlder "3.8";

src = fetchPypi {
pname = "llama_index_readers_s3";
inherit version;
hash = "sha256-x3XaPKxnvYYzrJYDmXIKC9YOAOr1HOU1XnaaHIuQnhk=";
hash = "sha256-xj7uRsc56Wv/SF4OPo/jc+43PabJ4vaM5HcxhnxTzY8=";
};

build-system = [
poetry-core
];
build-system = [ poetry-core ];

dependencies = [
llama-index-core
Expand All @@ -34,9 +33,7 @@ buildPythonPackage rec {
# Tests are only available in the mono repo
doCheck = false;

pythonImportsCheck = [
"llama_index.readers.s3"
];
pythonImportsCheck = [ "llama_index.readers.s3" ];

meta = with lib; {
description = "LlamaIndex Readers Integration for S3";
Expand Down

0 comments on commit 71e29c2

Please sign in to comment.