This is an automated email from the git hooks/post-receive script.
jgart pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 53f58596c9 gnu: python-mako: Improve package style.
53f58596c9 is described below
commit 53f58596c928397e4e31cf08196db0102dc8950f
Author: jgart <[email protected]>
AuthorDate: Wed Jul 24 22:37:12 2024 -0500
gnu: python-mako: Improve package style.
* gnu/packages/python-xyz.scm (python-mako) [arguments]: Use G-expressions.
Change-Id: Ib33ddae71a7913dccbc3117644c8efd1058e0747
---
gnu/packages/python-xyz.scm | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fcf01f3d04..9291d8c4a3 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19234,13 +19234,14 @@ of @acronym{REGEXPs, regular expressions}.")
"0gqnv9py1dqp01jmf5zxp0vj2dbhq1l9zy55fai319iv6sdqc91p"))))
(build-system python-build-system)
(arguments
- `(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (if tests?
- (invoke "pytest" "-vv")
- (format #t "test suite not run~%"))
- #t)))))
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (if tests?
+ (invoke "pytest" "-vv")
+ (format #t "test suite not run~%")))))))
(propagated-inputs
(list python-markupsafe))
(native-inputs