rekado pushed a commit to branch master
in repository guix.
commit 5fa1ed817ab307c54791a6252f097ea0c5e96f0f
Author: Sou Bunnbu (宋文武) <[email protected]>
AuthorDate: Wed Jan 15 13:13:47 2025 +0800
gnu: python-daemux: Fix build.
* gnu/packages/tmux.scm (python-daemux)[native-inputs]: Add python-flake8.
Change-Id: I0e3ec537c6722643ebb9ebc243230101bb2547ca
---
gnu/packages/tmux.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm
index 4f923608d6..ebd957c4ee 100644
--- a/gnu/packages/tmux.scm
+++ b/gnu/packages/tmux.scm
@@ -45,6 +45,7 @@
#:use-module (gnu packages libevent)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages python-xyz)
#:use-module (gnu packages sphinx))
(define-public tmux
@@ -221,7 +222,7 @@ with live tmux sessions.")
(propagated-inputs
(list python-libtmux))
(native-inputs
- (list python-coverage python-sphinx tmux))
+ (list python-coverage python-flake8 python-sphinx tmux))
(home-page "https://github.com/edouardklein/daemux")
(synopsis "Start, stop, restart and check daemons via tmux")
(description