diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-02-13 22:13:03 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-02-13 22:16:13 +0100 |
commit | 51a0887dcff42c62cf7b599edbf1e62814fef51b (patch) | |
tree | a6e52a75b9a40fc8b40fd16fa666de8c8c5f2da1 | |
parent | f24ebd3b64ae0fb13689089270188e0748db2c29 (diff) | |
download | guix-51a0887dcff42c62cf7b599edbf1e62814fef51b.tar guix-51a0887dcff42c62cf7b599edbf1e62814fef51b.tar.gz |
gnu: gajim: Do not propagate Python packages.
* gnu/packages/messaging.scm (gajim)[propagated-inputs]: Move all inputs from
here...
[inputs]: ...to here.
-rw-r--r-- | gnu/packages/messaging.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index c6d8eca46a..9345e24263 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -477,12 +477,11 @@ was initially a fork of xmpppy, but is using non-blocking sockets.") #t))))) (native-inputs `(("intltool" ,intltool))) - (propagated-inputs + (inputs `(("python2-nbxmpp" ,python2-nbxmpp) ("python2-pyopenssl" ,python2-pyopenssl) - ("python2-gnupg" ,python2-gnupg))) - (inputs - `(("python2-pygtk" ,python2-pygtk) + ("python2-gnupg" ,python2-gnupg) + ("python2-pygtk" ,python2-pygtk) ("python" ,python-2))) (home-page "https://gajim.org/") (synopsis "Jabber (XMPP) client") |