From b0879a0372fd9a0fa7563c4081de7c9fdf26e3d5 Mon Sep 17 00:00:00 2001 From: "Markus S. Wamser" Date: Mon, 11 Nov 2019 22:16:42 +0100 Subject: [PATCH] guake: add missing dependency on setuptools python setuptools is a runtime dependency (as from pkg_resources import Requirement is used) --- pkgs/applications/misc/guake/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/guake/default.nix b/pkgs/applications/misc/guake/default.nix index 97303c43fb1..be29f6a8695 100644 --- a/pkgs/applications/misc/guake/default.nix +++ b/pkgs/applications/misc/guake/default.nix @@ -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