1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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 <hugo@buddelmeijer.nl>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Charles Roelli
2026-02-21 12:28:44 +01:00
committed by Sharlatan Hellseher
parent 4763920eb3
commit 8a53a4656a

View File

@@ -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