summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-21 00:21:11 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:40 +0100
commitce34c5ae606afa9f1712638843136afd8979d64f (patch)
treec2318a75d0d199f95ed4e736b500018e03ded590 /gnu
parent57a9d6917ae8e00b85b544f30721198c70c316f1 (diff)
gnu: python-zope-bootstrap-package: Improve style.
* gnu/packages/python-web.scm (python-zope-bootstrap-package): Rewrite using gexps, and add python-setuptools to native-inputs. Change-Id: Iec6b106d9510d332540626b80cc63420351e8c62 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-web.scm13
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a90f25a2e53..1f57f44af43 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4555,16 +4555,17 @@ outside of the Zope framework.")
(name (string-append (package-name orig) "-bootstrap"))
(arguments
(if (null? (package-arguments orig))
- `(#:tests? #f
- #:phases (modify-phases %standard-phases
- (delete 'sanity-check)))
+ (list
+ #:tests? #f
+ #:phases #~(modify-phases %standard-phases
+ (delete 'sanity-check)))
(substitute-keyword-arguments (package-arguments orig)
((#:tests? _ #f) #f)
((#:phases phases '%standard-phases)
- `(modify-phases ,phases
- (delete 'sanity-check))))))
+ #~(modify-phases #$phases
+ (delete 'sanity-check))))))
(propagated-inputs `())
- (native-inputs `())
+ (native-inputs (list python-setuptools))
(properties `((hidden? . #t)))))
(define-public python-zope-exceptions-bootstrap