lol

python312Packages.llama-index-readers-s3: format with nixfmt

+11 -14
+11 -14
pkgs/development/python-modules/llama-index-readers-s3/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , llama-index-core 5 - , llama-index-readers-file 6 - , poetry-core 7 - , pythonOlder 8 - , s3fs 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + llama-index-core, 6 + llama-index-readers-file, 7 + poetry-core, 8 + pythonOlder, 9 + s3fs, 9 10 }: 10 11 11 12 buildPythonPackage rec { ··· 21 22 hash = "sha256-xj7uRsc56Wv/SF4OPo/jc+43PabJ4vaM5HcxhnxTzY8="; 22 23 }; 23 24 24 - build-system = [ 25 - poetry-core 26 - ]; 25 + build-system = [ poetry-core ]; 27 26 28 27 dependencies = [ 29 28 llama-index-core ··· 34 33 # Tests are only available in the mono repo 35 34 doCheck = false; 36 35 37 - pythonImportsCheck = [ 38 - "llama_index.readers.s3" 39 - ]; 36 + pythonImportsCheck = [ "llama_index.readers.s3" ]; 40 37 41 38 meta = with lib; { 42 39 description = "LlamaIndex Readers Integration for S3";