mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: mail: Remove python-django-mailman3.
This package fails to build, as django-mailman3 currently only works with Python 2. * gnu/packages/mail.scm (python-django-mailman3): Removed variable. (python2-django-mailman3): Inline the use of python-django-mailman3, and remove the use of package-with-python2.
This commit is contained in:
parent
17dc2a0997
commit
ea3b9f7b73
1 changed files with 22 additions and 19 deletions
|
@ -2108,9 +2108,9 @@ (define-public mlmmj
|
|||
@end enumerate\n")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-django-mailman3
|
||||
(define-public python2-django-mailman3
|
||||
(package
|
||||
(name "python-django-mailman3")
|
||||
(name "python2-django-mailman3")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
|
@ -2120,16 +2120,28 @@ (define-public python-django-mailman3
|
|||
(base32
|
||||
"1adxyh8knw9knjlh73xq0jpn5adml0ck4alsv0swakm95wfyx46z"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(zero?
|
||||
(system*
|
||||
"django-admin"
|
||||
"test"
|
||||
"--settings=django_mailman3.tests.settings_test"
|
||||
"django_mailman3")))))
|
||||
#:python ,python-2))
|
||||
(inputs
|
||||
`(("python-django" ,python-django)))
|
||||
`(("python2-django" ,python2-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)))
|
||||
`(("python2-requests" ,python2-requests)
|
||||
("python2-requests-oauthlib" ,python2-requests-oauthlib)
|
||||
("python2-openid" ,python2-openid)
|
||||
("python2-mailmanclient" ,python2-mailmanclient)
|
||||
("python2-django-allauth" ,python2-django-allauth)
|
||||
("python2-django-gravatar2" ,python2-django-gravatar2)
|
||||
("python2-pytz" ,python2-pytz)))
|
||||
(home-page "https://gitlab.com/mailman/django-mailman3")
|
||||
(synopsis "Django library for Mailman UIs")
|
||||
(description
|
||||
|
@ -2137,15 +2149,6 @@ (define-public python-django-mailman3
|
|||
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 postorius
|
||||
(package
|
||||
(name "postorius")
|
||||
|
|
Loading…
Reference in a new issue