guake: add missing dependency on setuptools

python setuptools is a runtime dependency (as
from pkg_resources import Requirement
is used)
This commit is contained in:
Markus S. Wamser 2019-11-11 22:16:42 +01:00
parent d73e94578f
commit b0879a0372
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ in python3.pkgs.buildPythonApplication {
buildInputs = [ gtk3 keybinder3 libnotify python3 vte ];
propagatedBuildInputs = with python3.pkgs; [ dbus-python pbr pycairo pygobject3 libwnck3 ];
propagatedBuildInputs = with python3.pkgs; [ dbus-python pbr pycairo pygobject3 setuptools libwnck3 ];
LC_ALL = "en_US.UTF-8"; # fixes weird encoding error, see https://github.com/NixOS/nixpkgs/pull/38642#issuecomment-379727699