diff options
author | Marius Bakke <marius@gnu.org> | 2021-12-01 00:55:00 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-12-05 14:02:09 +0100 |
commit | 97edcf2e632857f520ab84c913f9b28b213e4d73 (patch) | |
tree | 3e7d2fc57118ce8d9e6d3b1cb6670f25359c547a /gnu | |
parent | 458e972484a701d5d11a58f607e265659390258b (diff) |
gnu: python-django-url-filter: Adjust phase order.
* gnu/packages/django.scm (python-django-url-filter)[arguments]: Move
substitution to after the unpack phase, so that it does not end up in the egg
info.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/django.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 33bb2f9f52..58f966c045 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -1307,7 +1307,7 @@ to ElasticSearch.") (arguments '(#:tests? #f ;FIXME: Django raises "Apps aren't loaded yet"!? #:phases (modify-phases %standard-phases - (add-before 'check 'loosen-requirements + (add-after 'unpack 'loosen-requirements (lambda _ ;; Do not depend on compatibility package for old ;; Python versions. |