From 8a53a4656af1895a6ec9e8c48797d6465dda284d Mon Sep 17 00:00:00 2001 From: Charles Roelli Date: Sat, 21 Feb 2026 12:28:44 +0100 Subject: [PATCH] gnu: python-django-contrib-comments: Update to 2.2.0-0.4ad4c70. * gnu/packages/django.scm (python-django-contrib-comments): Update to 2.2.0-0.4ad4c70, latest unreleased commit, for Django 5.2 compatibility. [propagated-inputs]: Remove python-django-4, add python-django. Change-Id: Ide0833b5ee7452b46661f180bb5153d971964d73 Reviewed-by: Hugo Buddelmeijer Signed-off-by: Sharlatan Hellseher --- gnu/packages/django.scm | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 808182ec48..19b594cafd 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -1057,23 +1057,27 @@ for Django sites.") (define-public python-django-contrib-comments (package (name "python-django-contrib-comments") - (version "2.2.0") + (properties '((commit . "4ad4c701f2a17ca62f040e94d73c2eb08af320e9") + (revision . "0"))) + (version (git-version "2.2.0" + (assoc-ref properties 'revision) + (assoc-ref properties 'commit))) (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/django/django-contrib-comments") - (commit version))) + (url "https://github.com/django/django-contrib-comments") + (commit (assoc-ref properties 'commit)))) (file-name (git-file-name name version)) (sha256 - (base32 "17mymw64bm5f19iq6dlpcbbycamy2a0wrnfzrbnw8diysc3fsnpr")))) + (base32 "0rr8vxj8q93b1a8s69a8big0r5h77liwi8ldc7ssk2bfwqb7gh26")))) (build-system pyproject-build-system) (arguments (list #:test-backend #~'custom #:test-flags #~(list "tests/runtests.py"))) (native-inputs (list python-setuptools tzdata-for-tests)) - (propagated-inputs (list python-django-4)) + (propagated-inputs (list python-django)) (home-page "https://github.com/django/django-contrib-comments") (synopsis "Comments framework") (description