diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-07-20 17:47:43 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-07-20 17:47:43 +0300 |
commit | b25d148f997a9a71aae15e90d392ba9f5b552ee4 (patch) | |
tree | d06b65933417b597a2c6a0c202bcbee541036cb8 /gnu | |
parent | 24ba0d37cfd1626695bad15128cfd114e72ab564 (diff) | |
download | guix-b25d148f997a9a71aae15e90d392ba9f5b552ee4.tar.gz guix-b25d148f997a9a71aae15e90d392ba9f5b552ee4.zip |
gnu: Add python-zope-configuration-bootstrap.
* gnu/packages/python-web.scm (python-zope-configuration-bootstrap): New
hidden variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-web.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index dbec6acaac..ec98a5b246 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1299,6 +1299,13 @@ defining data schemas.") Markup Language.") (license license:zpl2.1))) +(define-public python-zope-configuration-bootstrap + (package + (inherit python-zope-configuration) + (arguments `(#:tests? #f)) + (native-inputs `()) + (properties `((hidden? . #t))))) + (define-public python2-zope-configuration (package-with-python2 python-zope-configuration)) |