diff options
author | ng0 <ng0@libertad.pw> | 2017-02-15 10:09:26 +0000 |
---|---|---|
committer | Kei Kebreau <kei@openmailbox.org> | 2017-04-08 12:40:23 -0400 |
commit | 8a3741e61bc310090c73b521d29e67404336e590 (patch) | |
tree | 5326f6c5e123f0f7df513d94a25a9299653a8791 | |
parent | 14d8f6538f3af04c2bc879837f94f0bc54177aed (diff) | |
download | patches-8a3741e61bc310090c73b521d29e67404336e590.tar patches-8a3741e61bc310090c73b521d29e67404336e590.tar.gz |
gnu: Add python-django-mailman3.
* gnu/packages/mail.scm (python-django-mailman3): New variable.
Signed-off-by: Kei Kebreau <kei@openmailbox.org>
-rw-r--r-- | gnu/packages/mail.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 13861a8ad4..2585af99e6 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -50,6 +50,7 @@ #:use-module (gnu packages cyrus-sasl) #:use-module (gnu packages databases) #:use-module (gnu packages dejagnu) + #:use-module (gnu packages django) #:use-module (gnu packages dns) #:use-module (gnu packages documentation) #:use-module (gnu packages emacs) @@ -2062,6 +2063,44 @@ installation on systems where resources are limited. Its features include: @end enumerate\n") (license license:expat))) +(define-public python-django-mailman3 + (package + (name "python-django-mailman3") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "django-mailman3" version)) + (sha256 + (base32 + "1adxyh8knw9knjlh73xq0jpn5adml0ck4alsv0swakm95wfyx46z")))) + (build-system python-build-system) + (inputs + `(("python-django" ,python-django) + (propagated-inputs + `(("python-requests" ,python-requests) + ("python-requests-oauthlib" ,python-requests-oauthlib) + ("python-openid" ,python-openid) + ("python-mailmanclient" ,python-mailmanclient) + ("python-django-allauth" ,python-django-allauth) + ("python-django-gravatar2" ,python-django-gravatar2) + ("python-pytz" ,python-pytz))) + (home-page "https://gitlab.com/mailman/django-mailman3") + (synopsis "Django library for Mailman UIs") + (description + "Libraries and templates for Django-based interfaces +interacting with Mailman.") + (license gpl3+))) + +(define-public python2-django-mailman3 + (let ((base (package-with-python2 + python-django-mailman3))) + (package + (inherit base) + (propagated-inputs + `(("python2-openid" ,python2-openid) + ,@(package-propagated-inputs base)))))) + (define-public blists (package (name "blists") |