summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-07-16 22:25:11 -0300
committerVinicius Monego <monego@posteo.net>2025-07-19 04:10:11 -0300
commit821a42d2fc0cf9b2cb7346369725637dc97dd1f1 (patch)
tree8426e347a2b7f35b220e55d8d7cb39165e8ae241 /gnu/packages
parentd1a9c8429d42afe2d39ece1a874a2fbd1b6b9cdb (diff)
gnu: python-django-appconf: Update to 1.1.0.
* gnu/packages/django.scm (python-django-appconf): Update to 1.1.0. [build-system]: Use pyproject-build-system. [arguments]: Use Gexp. <#:phases>: Respect '#:tests?' in the custom 'check' phase. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: I524f49ec28dc9dafa75d8e1d53c28e0c2b998f48
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/django.scm19
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 5485786224b..a84f31fa896 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1215,20 +1215,23 @@ the order of added relations.")
(define-public python-django-appconf
(package
(name "python-django-appconf")
- (version "1.0.4")
+ (version "1.1.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "django-appconf" version))
(sha256
(base32
- "101k8nkc7xlffpjdi2qbrp9pc4v8hzvmkzi12qp7vms39asxwn5y"))))
- (build-system python-build-system)
+ "1r23cb8g680p4lc8q4gikarcn1y0x5x4whw9w4gg58425wvsvklz"))))
+ (build-system pyproject-build-system)
(arguments
- '(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (setenv "DJANGO_SETTINGS_MODULE" "tests.test_settings")
- (invoke "django-admin" "test" "--pythonpath=."))))))
+ (list
+ #:phases #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (setenv "DJANGO_SETTINGS_MODULE" "tests.test_settings")
+ (invoke "django-admin" "test" "--pythonpath=.")))))))
+ (native-inputs (list python-setuptools python-wheel))
(propagated-inputs
(list python-django))
(home-page "https://github.com/django-compressor/django-appconf")