gnu: Add python-django-mailman3.
* gnu/packages/mail.scm (python-django-mailman3): New variable.
This commit is contained in:
parent
da3dbd61ed
commit
ba7816a2ce
1 changed files with 38 additions and 0 deletions
|
@ -2551,6 +2551,44 @@ (define-public mlmmj
|
|||
@end enumerate\n")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-django-mailman3
|
||||
(package
|
||||
(name "python-django-mailman3")
|
||||
(version "1.3.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "django-mailman3" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1yrm7wpjy34xai72vn2vkhc9131cdrbqy08rrabf36kynj5vcdvy"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(setenv "DJANGO_SETTINGS_MODULE"
|
||||
"django_mailman3.tests.settings_test")
|
||||
(invoke "django-admin" "test"
|
||||
"--pythonpath=."))))))
|
||||
(propagated-inputs
|
||||
`(("python-django" ,python-django)
|
||||
("python-django-allauth" ,python-django-allauth)
|
||||
("python-django-gravatar2" ,python-django-gravatar2)
|
||||
("python-mailmanclient" ,python-mailmanclient)
|
||||
("python-pytz" ,python-pytz)))
|
||||
(native-inputs
|
||||
`(("python-mock" ,python-mock)))
|
||||
(home-page "https://gitlab.com/mailman/django-mailman3")
|
||||
(synopsis "Django library to help interaction with Mailman")
|
||||
(description
|
||||
"This package contains libraries and templates for Django-based interfaces
|
||||
interacting with Mailman.")
|
||||
(properties `((python2-variant . ,(delay python2-django-mailman))))
|
||||
(license license:gpl3+)))
|
||||
|
||||
;; This is the last version to support Python-2.
|
||||
(define-public python2-django-mailman3
|
||||
(package
|
||||
(name "python2-django-mailman3")
|
||||
|
|
Loading…
Reference in a new issue