pythonPackages.pyscreenshot: add missing pillow dependency
This commit is contained in:
parent
302ef60620
commit
46159bcf20
1 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
, entrypoint2
|
||||
, jeepney
|
||||
, mss
|
||||
, pillow
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -20,6 +21,7 @@ buildPythonPackage rec {
|
|||
propagatedBuildInputs = [
|
||||
EasyProcess
|
||||
entrypoint2
|
||||
pillow
|
||||
] ++ lib.optionals (isPy3k) [
|
||||
jeepney
|
||||
mss
|
||||
|
@ -28,6 +30,8 @@ buildPythonPackage rec {
|
|||
# recursive dependency on pyvirtualdisplay
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pyscreenshot" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "python screenshot";
|
||||
homepage = "https://github.com/ponty/pyscreenshot";
|
||||
|
|
Loading…
Reference in a new issue