diff --git a/pkgs/development/python-modules/llama-index-readers-s3/default.nix b/pkgs/development/python-modules/llama-index-readers-s3/default.nix index 31be800e447f..0bb70b56c861 100644 --- a/pkgs/development/python-modules/llama-index-readers-s3/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-s3/default.nix @@ -3,6 +3,7 @@ buildPythonPackage, fetchPypi, llama-index-core, + llama-index-embeddings-openai, llama-index-readers-file, hatchling, s3fs, @@ -10,19 +11,20 @@ buildPythonPackage rec { pname = "llama-index-readers-s3"; - version = "0.5.1"; + version = "0.6.1"; pyproject = true; src = fetchPypi { pname = "llama_index_readers_s3"; inherit version; - hash = "sha256-Ye+B4lcwdeaAisaIZH98X2n7FA7n9/gkVVNRN1uihys="; + hash = "sha256-cK5XmH4F0TZt6IMJvAnmEs7UWkekrrbEAIvd/CE33xw="; }; build-system = [ hatchling ]; dependencies = [ llama-index-core + llama-index-embeddings-openai llama-index-readers-file s3fs ];