diff options
author | Marius Bakke <marius@gnu.org> | 2020-09-01 19:05:41 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-09-22 18:41:52 +0200 |
commit | 23f6796880f5d8fd9f2ef9b881a2330b76675fdb (patch) | |
tree | 4f2db6ce43da6909e3f11d7c90e5750ccb82b3dc /gnu/packages/mail.scm | |
parent | 49150e8a0063030973c9a41e2d48daca7ad96599 (diff) | |
download | guix-23f6796880f5d8fd9f2ef9b881a2330b76675fdb.tar guix-23f6796880f5d8fd9f2ef9b881a2330b76675fdb.tar.gz |
gnu: Remove python2-django-mailman3.
This package depends on Python 2 which is past end-of-life and not supported
by newer versions of Django.
* gnu/packages/mail.scm (python2-django-mailman3): Remove variable.
(python-django-mailman3)[properties]: Remove.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 06b04d6024..c9edde65be 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -3050,47 +3050,6 @@ installation on systems where resources are limited. Its features include: (description "This package contains libraries and templates for Django-based interfaces interacting with Mailman.") - (properties `((python2-variant . ,(delay python2-django-mailman3)))) - (license license:gpl3+))) - -;; This is the last version to support Python-2. -(define-public python2-django-mailman3 - (package - (name "python2-django-mailman3") - (version "1.1.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "django-mailman3" version)) - (sha256 - (base32 - "1xjdkgfjwhgyrp5nxw65dcpcsr98ygj6856sp0bwkrmyxpd1xxk2")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda _ - (invoke "django-admin" - "test" - "--settings=django_mailman3.tests.settings_test" - "django_mailman3")))) - #:python ,python-2)) - (inputs - `(("python2-django" ,python2-django))) - (propagated-inputs - `(("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 - "Libraries and templates for Django-based interfaces -interacting with Mailman.") (license license:gpl3+))) (define-public python-mailman-hyperkitty |