From a735883a37a2efe6ee34175d950ee5143daaab9c Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 10 May 2024 00:53:24 +0200 Subject: [PATCH] gnu: python-pypujs: Improve package style. * gnu/packages/python-xyz.scm (python-pypujs): Improve package style. [arguments]<#:test-flags>: Use it in place of check phase replacement. <#:phases>: Clarify phase disable-pyramid. Change-Id: If8073cc4e9a8a86003000e7157985fe382de7b4f Signed-off-by: Nicolas Goaziou --- gnu/packages/python-xyz.scm | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index febada71efb1687a7a38d886f51720c5b2e2d4c1..0ad615ae733482bb4ff65aab3234ab57fbba0229 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6748,18 +6748,13 @@ templates. A format string can be provided to control the output.") (build-system pyproject-build-system) (arguments (list + #:test-flags '(list "pypugjs/testsuite/") #:phases #~(modify-phases %standard-phases - ;; Our pyramid is outdated and pyramid-mako is not packaged. (add-after 'unpack 'disable-pyramid - (lambda* (#:key inputs #:allow-other-keys) - (substitute* "setup.py" - (("'pyramid") - "#'pyramid")))) - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "python" "-m" "pytest" "-v" - "pypugjs/testsuite/"))))))) + (lambda _ + ;; pyramid is outdated and pyramid-mako is unpackaged. + (substitute* "setup.cfg" + (("'(pyramid|pyramid-mako)[^']*',") ""))))))) (native-inputs (list python-coverage python-django python-jinja2