diff options
author | Marius Bakke <marius@gnu.org> | 2022-01-12 00:41:17 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-01-12 23:50:14 +0100 |
commit | a46a5a419615df8cf86c4fb342642549fddeedb7 (patch) | |
tree | da6da8e4985c56f710f7f0ffd1e7a901c77e8ff4 | |
parent | 937c5ff1ce4b125f7797fbaea65121a4308b683f (diff) | |
download | guix-a46a5a419615df8cf86c4fb342642549fddeedb7.tar.gz guix-a46a5a419615df8cf86c4fb342642549fddeedb7.zip |
gnu: postorius: Build with Django 2.2.
* gnu/packages/mail.scm (postorius)[inputs]: Change from PYTHON-DJANGO to
PYTHON-DJANGO-2.2. Move PYTHON-README-RENDERER early so that its propagated
cffi takes precedence, in order to placate the sanity check.
-rw-r--r-- | gnu/packages/mail.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index b1aef2e878..9f70ae1b08 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -3520,8 +3520,8 @@ some configuration.") #t)))) #:tests? #f)) ; Tests try to run a mailman instance to test against. (inputs - (list python-django python-django-mailman3 python-mailmanclient - python-readme-renderer)) + (list python-readme-renderer python-mailmanclient + python-django-2.2 python-django-mailman3)) (native-inputs (list python-beautifulsoup4 python-isort python-mock python-vcrpy)) (home-page "https://gitlab.com/mailman/postorius") |