vagrantc pushed a commit to branch core-updates-frozen-batched-changes in repository guix.
commit b546cbc329bae4e5583a74f4ab4b8c8b60ef67a6 Author: Maxim Cournoyer <[email protected]> AuthorDate: Thu Nov 4 23:04:42 2021 -0400 gnu: python-wmctrl: Add missing python-attrs propagated inputs. Credits to the 'sanity-check' phase for detecting this problem. * gnu/packages/python-xyz.scm (python-wmctrl)[propagated-inputs]: Add python-attrs. --- gnu/packages/python-xyz.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ad31773..b9f14de 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5690,6 +5690,7 @@ humans, and implementation simplicity.") (("'wmctrl") (string-append "'" wmctrl "/bin/wmctrl"))))))))) (inputs `(("wmctrl" ,wmctrl))) + (propagated-inputs (list python-attrs)) (home-page "https://github.com/antocuni/wmctrl") (synopsis "Tool to programmatically control Xorg windows") (description "This package provides a library for programmatically
