[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
266/455: gnu: python-django-statici18n: Update to 2.6.0.
From: |
guix-commits |
Subject: |
266/455: gnu: python-django-statici18n: Update to 2.6.0. |
Date: |
Mon, 20 Jan 2025 15:47:13 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit 0d35427c4412c392ad98e7402f4cd9cad906cb02
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Jan 12 17:42:19 2025 +0100
gnu: python-django-statici18n: Update to 2.6.0.
* gnu/packages/django.scm (python-django-statici18n): Update to 2.6.0.
[build-system]: Use pyproject-build-system.
[arguments]: Run tests conditionally.
[native-inputs]: Add python-setuptools and python-wheel.
[propagated-inputs]: Drop labels.
Change-Id: Iad2af67f46883d7e6603180873b2616a15b6ee80
---
gnu/packages/django.scm | 26 ++++++++++++++------------
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index d992ae0082..fc330e69c9 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1154,7 +1154,7 @@ name is purely coincidental.")
(define-public python-django-statici18n
(package
(name "python-django-statici18n")
- (version "2.1.0")
+ (version "2.6.0")
(home-page "https://github.com/zyegfryed/django-statici18n")
(source (origin
(method git-fetch)
@@ -1164,20 +1164,22 @@ name is purely coincidental.")
(file-name (git-file-name name version))
(sha256
(base32
- "0x0xvfqd40is2ks43d65awgqkx3wk10lvdim15scvbjhkh301b6v"))))
- (build-system python-build-system)
+ "13caylidzlsb25gihc6xyqfzmdikj240kqvbdb1hn3h40ky4alhv"))))
+ (build-system pyproject-build-system)
(arguments
- '(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (setenv "PYTHONPATH" "./tests/test_project")
- (setenv "DJANGO_SETTINGS_MODULE" "project.settings")
- (invoke "pytest" "-vv"))))))
+ (list
+ #:phases
+ '(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (setenv "PYTHONPATH" "./tests/test_project")
+ (setenv "DJANGO_SETTINGS_MODULE" "project.settings")
+ (invoke "pytest" "-vv")))))))
(native-inputs
- (list python-pytest python-pytest-django))
+ (list python-pytest python-pytest-django python-setuptools python-wheel))
(propagated-inputs
- `(("python-django" ,python-django)
- ("django-appconf" ,python-django-appconf)))
+ (list python-django python-django-appconf))
(synopsis "Generate JavaScript catalog to static files")
(description
"A Django app that provides helper for generating JavaScript catalog to
- 217/455: gnu: python-asgi-csrf: Make compatibly with httpx 0.28.0+., (continued)
- 217/455: gnu: python-asgi-csrf: Make compatibly with httpx 0.28.0+., guix-commits, 2025/01/20
- 234/455: gnu: python-matplotx: Add missing inputs., guix-commits, 2025/01/20
- 233/455: gnu: datasette: Update to 1.0a16., guix-commits, 2025/01/20
- 252/455: gnu: python-librosa: Update to 0.10.2.post1., guix-commits, 2025/01/20
- 253/455: gnu: instrain: Update to 1.9.0., guix-commits, 2025/01/20
- 250/455: gnu: python-audioread: Update to 3.0.1., guix-commits, 2025/01/20
- 238/455: gnu: python-pytest-datafiles: Add missing inputs., guix-commits, 2025/01/20
- 255/455: gnu: python-django-haystack: Update to 3.3.0., guix-commits, 2025/01/20
- 260/455: gnu: python-django-jinja: Update to 2.11.0., guix-commits, 2025/01/20
- 287/455: gnu: unicorn: Add missing inputs., guix-commits, 2025/01/20
- 266/455: gnu: python-django-statici18n: Update to 2.6.0.,
guix-commits <=
- 277/455: gnu: python-mulpyplexer: Add missing inputs., guix-commits, 2025/01/20
- 270/455: gnu: Add python-simple-websocket., guix-commits, 2025/01/20
- 283/455: gnu: python-pyro-ppl: Add missing inputs., guix-commits, 2025/01/20
- 273/455: gnu: python-flask-socketio: Update to 5.5.1., guix-commits, 2025/01/20
- 290/455: gnu: python-angr: Add missing inputs., guix-commits, 2025/01/20
- 306/455: gnu: python-waybackpack: Fix build., guix-commits, 2025/01/20
- 296/455: gnu: python-pkgconfig: Update to 1.5.5., guix-commits, 2025/01/20
- 308/455: gnu: python-vdf: Fix build., guix-commits, 2025/01/20
- 301/455: gnu: python-xmp-toolkit: Fix build., guix-commits, 2025/01/20
- 309/455: gnu: python-types-dateutil: Fix build., guix-commits, 2025/01/20