diff options
author | Leo Famulari <leo@famulari.name> | 2015-11-08 22:03:53 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-12-05 09:44:36 -0500 |
commit | fbac9b178ea9b7273b7fc8bf99db8ad786ba8669 (patch) | |
tree | 276d6d96028041abdaca2d1b2b47a97790b98007 | |
parent | 71fb09f32633bdf36151a10ea25b68409587f25f (diff) | |
download | patches-fbac9b178ea9b7273b7fc8bf99db8ad786ba8669.tar patches-fbac9b178ea9b7273b7fc8bf99db8ad786ba8669.tar.gz |
gnu: Add python-zope-configuration.
* gnu/packages/python.scm (python-zope-configuration,
python2-zope-configuration): New variables.
-rw-r--r-- | gnu/packages/python.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 81c10fb008..0be8e6f6e1 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6201,3 +6201,28 @@ defining data schemas.") (define-public python2-zope-schema (package-with-python2 python-zope-schema)) + +(define-public python-zope-configuration + (package + (name "python-zope-configuration") + (version "4.0.3") + (source (origin + (method url-fetch) + (uri (string-append "https://pypi.python.org/packages/source/z" + "/zope.configuration/zope.configuration-" + version ".tar.gz")) + (sha256 + (base32 + "1x9dfqypgympnlm25p9m43xh4qv3p7d75vksv9pzqibrb4cggw5n")))) + (build-system python-build-system) + (propagated-inputs + `(("python-zope-i18nmessageid" ,python-zope-i18nmessageid) + ("python-zope-schema" ,python-zope-schema))) + (home-page "http://pypi.python.org/pypi/zope.configuration") + (synopsis "Zope Configuration Markup Language") + (description "Zope.configuration implements ZCML, the Zope Configuration +Markup Language.") + (license zpl2.1))) + +(define-public python2-zope-configuration + (package-with-python2 python-zope-configuration)) |