Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / llama-index-readers-s3 / default.nix
blobb43eb933ff7803cffa8e97c909acdcdbbdcefe8c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   llama-index-core,
6   llama-index-readers-file,
7   poetry-core,
8   pythonOlder,
9   s3fs,
12 buildPythonPackage rec {
13   pname = "llama-index-readers-s3";
14   version = "0.1.7";
15   pyproject = true;
17   disabled = pythonOlder "3.8";
19   src = fetchPypi {
20     pname = "llama_index_readers_s3";
21     inherit version;
22     hash = "sha256-xj7uRsc56Wv/SF4OPo/jc+43PabJ4vaM5HcxhnxTzY8=";
23   };
25   build-system = [ poetry-core ];
27   dependencies = [
28     llama-index-core
29     llama-index-readers-file
30     s3fs
31   ];
33   # Tests are only available in the mono repo
34   doCheck = false;
36   pythonImportsCheck = [ "llama_index.readers.s3" ];
38   meta = with lib; {
39     description = "LlamaIndex Readers Integration for S3";
40     homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-s3";
41     license = licenses.mit;
42     maintainers = with maintainers; [ fab ];
43   };