diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-17 23:00:02 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-17 23:23:40 +0100 |
commit | 8335f7b441b40d2fc7659d1c21f7a98d524d5c5b (patch) | |
tree | 425c817258ee89b84109da80c528e85e744d00a5 | |
parent | d14663b94a7428eccbfa27aa620dc3d8ba67d752 (diff) | |
download | guix-8335f7b441b40d2fc7659d1c21f7a98d524d5c5b.tar.gz guix-8335f7b441b40d2fc7659d1c21f7a98d524d5c5b.zip |
gnu: python-django-compressor: Fix indentation.
* gnu/packages/django.scm (python-django-compressor): Fix indentation.
Change-Id: I8e05c49a075cf394de2ddaa74d5bca519fbee8e2
-rw-r--r-- | gnu/packages/django.scm | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index cb9df0d2df..155f318c5c 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -1448,31 +1448,31 @@ forms using your favorite CSS framework, without writing template code.") (name "python-django-compressor") (version "4.5.1") (source - (origin - (method url-fetch) - (uri (pypi-uri "django_compressor" version)) - (sha256 - (base32 "08m8cs1mnpwd2zlck8cbl4cdp21dgv4vj7j17krbgn745s5a9n61")))) + (origin + (method url-fetch) + (uri (pypi-uri "django_compressor" version)) + (sha256 + (base32 "08m8cs1mnpwd2zlck8cbl4cdp21dgv4vj7j17krbgn745s5a9n61")))) (build-system pyproject-build-system) (arguments (list #:phases '(modify-phases %standard-phases - (add-after 'unpack 'relax-requirements - (lambda _ - (substitute* "setup.py" - (("==") ">=")))) - ;; This needs calmjs. - (add-after 'unpack 'skip-bad-test - (lambda _ - (substitute* "compressor/tests/test_filters.py" - (("test_calmjs_filter") "_test_calmjs_filter")))) - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (setenv "DJANGO_SETTINGS_MODULE" "compressor.test_settings") - (invoke "django-admin" "test" - "--pythonpath=."))))))) + (add-after 'unpack 'relax-requirements + (lambda _ + (substitute* "setup.py" + (("==") ">=")))) + ;; This needs calmjs. + (add-after 'unpack 'skip-bad-test + (lambda _ + (substitute* "compressor/tests/test_filters.py" + (("test_calmjs_filter") "_test_calmjs_filter")))) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (setenv "DJANGO_SETTINGS_MODULE" "compressor.test_settings") + (invoke "django-admin" "test" + "--pythonpath=."))))))) (propagated-inputs (list python-django python-django-appconf |