Merge pull request #55270 from jlesquembre/ranger-images
ranger: add pillow dependency
This commit is contained in:
commit
812d74c55e
|
@ -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