about summary refs log tree commit diff
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorEmily Trau <13267947+emilytrau@users.noreply.github.com>2023-11-29 18:24:51 +1100
committerGitHub <noreply@github.com>2023-11-29 18:24:51 +1100
commit153753d70349f62458a24dc4ac2c5da7c3b713a9 (patch)
tree8976e652a299d1c4d649b3f744a9885e16174bc5 /pkgs/tools/inputmethods
parenta557bce7387b84a413eaa666e688325e099d3f01 (diff)
parent3de1cb1fc8236a99e024b01220b21afe2f522e68 (diff)
Merge pull request #270268 from SuperSandro2000/emote
emote: don't depend on dev outputs
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/emote/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/inputmethods/emote/default.nix b/pkgs/tools/inputmethods/emote/default.nix
index 15e9a49685354..8e3d7227d1bd9 100644
--- a/pkgs/tools/inputmethods/emote/default.nix
+++ b/pkgs/tools/inputmethods/emote/default.nix
@@ -29,9 +29,9 @@ python3Packages.buildPythonApplication rec {
   ];
 
   propagatedBuildInputs = with python3Packages; [
-    dbus-python
+    dbus-python.out # don't propagate dev output
     manimpango
-    pygobject3 # not listed in setup.py
+    pygobject3.out # not listed in setup.py, don't propagate dev output
     setproctitle
   ];