summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-10-13 20:44:18 +0100
committerGitHub <noreply@github.com>2017-10-13 20:44:18 +0100
commita4b999f7c96f95460bc3e917a157b98ea3c22520 (patch)
tree1b7f73d060f54dc010e85988fef5544f52c8107b /pkgs/tools
parent9a6f914f5fc0393c1addaebcdacd7201e4f24034 (diff)
parentf78aca5064c119d8463a43eb79e7e0d7c0453a18 (diff)
downloadnixlib-a4b999f7c96f95460bc3e917a157b98ea3c22520.tar
nixlib-a4b999f7c96f95460bc3e917a157b98ea3c22520.tar.gz
nixlib-a4b999f7c96f95460bc3e917a157b98ea3c22520.tar.bz2
nixlib-a4b999f7c96f95460bc3e917a157b98ea3c22520.tar.lz
nixlib-a4b999f7c96f95460bc3e917a157b98ea3c22520.tar.xz
nixlib-a4b999f7c96f95460bc3e917a157b98ea3c22520.tar.zst
nixlib-a4b999f7c96f95460bc3e917a157b98ea3c22520.zip
Merge pull request #30288 from yegortimoshenko/patch-3
ibus-table: fix pygobject3 dependency
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix
index 8c842dbc841e..8c552799432b 100644
--- a/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix
+++ b/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
   '';
 
   buildInputs = [
-    dconf gtk3 gobjectIntrospection ibus python3
+    dconf gtk3 gobjectIntrospection ibus (python3.withPackages (pypkgs: with pypkgs; [ pygobject3 ]))
   ];
 
   nativeBuildInputs = [ autoreconfHook docbook2x pkgconfig python3.pkgs.wrapPython ];