summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
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