ranger: add pillow dependency
Pillow is required to display images with kitty terminal To test it, add these 2 lines to your rc.conf: set preview_images true set preview_images_method kitty
This commit is contained in:
parent
a0a203eb5c
commit
3aca219535
@ -19,7 +19,8 @@ python3Packages.buildPythonApplication rec {
|
||||
LC_ALL = "en_US.UTF-8";
|
||||
|
||||
checkInputs = with python3Packages; [ pytest ];
|
||||
propagatedBuildInputs = [ file ];
|
||||
propagatedBuildInputs = [ file ]
|
||||
++ lib.optional (imagePreviewSupport) [ python3Packages.pillow ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test tests
|
||||
|
Loading…
Reference in New Issue
Block a user