mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add python-django-mailman3.
* gnu/packages/mail.scm (python-django-mailman3): New variable. Signed-off-by: Kei Kebreau <kei@openmailbox.org>
This commit is contained in:
parent
14d8f6538f
commit
8a3741e61b
1 changed files with 39 additions and 0 deletions
|
@ -50,6 +50,7 @@ (define-module (gnu packages mail)
|
||||||
#:use-module (gnu packages cyrus-sasl)
|
#:use-module (gnu packages cyrus-sasl)
|
||||||
#:use-module (gnu packages databases)
|
#:use-module (gnu packages databases)
|
||||||
#:use-module (gnu packages dejagnu)
|
#:use-module (gnu packages dejagnu)
|
||||||
|
#:use-module (gnu packages django)
|
||||||
#:use-module (gnu packages dns)
|
#:use-module (gnu packages dns)
|
||||||
#:use-module (gnu packages documentation)
|
#:use-module (gnu packages documentation)
|
||||||
#:use-module (gnu packages emacs)
|
#:use-module (gnu packages emacs)
|
||||||
|
@ -2062,6 +2063,44 @@ (define-public mlmmj
|
||||||
@end enumerate\n")
|
@end enumerate\n")
|
||||||
(license license:expat)))
|
(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
|
(define-public blists
|
||||||
(package
|
(package
|
||||||
(name "blists")
|
(name "blists")
|
||||||
|
|
Loading…
Reference in a new issue