me
/
guix
Archived
1
0
Fork 0

gnu: python-mako: Improve package style.

* gnu/packages/python-xyz.scm (python-mako) [arguments]: Use G-expressions.

Change-Id: Ib33ddae71a7913dccbc3117644c8efd1058e0747
master
jgart 2024-07-24 22:37:12 -05:00
parent 628189f919
commit 53f58596c9
No known key found for this signature in database
GPG Key ID: A52AA2B477B6DD35
1 changed files with 8 additions and 7 deletions

View File

@ -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