[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: Add python-django-mailman3.
From: |
Kei Kebreau |
Subject: |
05/06: gnu: Add python-django-mailman3. |
Date: |
Sat, 8 Apr 2017 12:41:42 -0400 (EDT) |
kkebreau pushed a commit to branch master
in repository guix.
commit 8a3741e61bc310090c73b521d29e67404336e590
Author: ng0 <address@hidden>
Date: Wed Feb 15 10:09:26 2017 +0000
gnu: Add python-django-mailman3.
* gnu/packages/mail.scm (python-django-mailman3): New variable.
Signed-off-by: Kei Kebreau <address@hidden>
---
gnu/packages/mail.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 13861a8..2585af9 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")
- branch master updated (72fa666 -> d99a2ad), Kei Kebreau, 2017/04/08
- 01/06: gnu: Add python-defusedxml., Kei Kebreau, 2017/04/08
- 02/06: gnu: Add python-openid., Kei Kebreau, 2017/04/08
- 04/06: gnu: Add python-django-gravatar2., Kei Kebreau, 2017/04/08
- 05/06: gnu: Add python-django-mailman3.,
Kei Kebreau <=
- 03/06: gnu: Add python-django-allauth., Kei Kebreau, 2017/04/08
- 06/06: gnu: Add postorius., Kei Kebreau, 2017/04/08