mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
33f413deed
commit
d92fe57436
1 changed files with 7 additions and 6 deletions
|
@ -4555,16 +4555,17 @@ outside of the Zope framework.")
|
||||||
(name (string-append (package-name orig) "-bootstrap"))
|
(name (string-append (package-name orig) "-bootstrap"))
|
||||||
(arguments
|
(arguments
|
||||||
(if (null? (package-arguments orig))
|
(if (null? (package-arguments orig))
|
||||||
`(#:tests? #f
|
(list
|
||||||
#:phases (modify-phases %standard-phases
|
#:tests? #f
|
||||||
|
#:phases #~(modify-phases %standard-phases
|
||||||
(delete 'sanity-check)))
|
(delete 'sanity-check)))
|
||||||
(substitute-keyword-arguments (package-arguments orig)
|
(substitute-keyword-arguments (package-arguments orig)
|
||||||
((#:tests? _ #f) #f)
|
((#:tests? _ #f) #f)
|
||||||
((#:phases phases '%standard-phases)
|
((#:phases phases '%standard-phases)
|
||||||
`(modify-phases ,phases
|
#~(modify-phases #$phases
|
||||||
(delete 'sanity-check))))))
|
(delete 'sanity-check))))))
|
||||||
(propagated-inputs `())
|
(propagated-inputs `())
|
||||||
(native-inputs `())
|
(native-inputs (list python-setuptools))
|
||||||
(properties `((hidden? . #t)))))
|
(properties `((hidden? . #t)))))
|
||||||
|
|
||||||
(define-public python-zope-exceptions-bootstrap
|
(define-public python-zope-exceptions-bootstrap
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue