summaryrefslogtreecommitdiff
path: root/gnu/packages/django.scm
diff options
context:
space:
mode:
authorCharles Roelli <charles@aurox.ch>2026-02-21 12:28:44 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-25 21:47:44 +0000
commit8a53a4656af1895a6ec9e8c48797d6465dda284d (patch)
tree4941131ee2f9f031ed111696b8572b0ab782102d /gnu/packages/django.scm
parent4763920eb327595fe012093a445c709467a171b5 (diff)
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>
Diffstat (limited to 'gnu/packages/django.scm')
-rw-r--r--gnu/packages/django.scm14
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 808182ec482..19b594cafda 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1057,23 +1057,27 @@ for Django sites.")
1057(define-public python-django-contrib-comments 1057(define-public python-django-contrib-comments
1058 (package 1058 (package
1059 (name "python-django-contrib-comments") 1059 (name "python-django-contrib-comments")
1060 (version "2.2.0") 1060 (properties '((commit . "4ad4c701f2a17ca62f040e94d73c2eb08af320e9")
1061 (revision . "0")))
1062 (version (git-version "2.2.0"
1063 (assoc-ref properties 'revision)
1064 (assoc-ref properties 'commit)))
1061 (source 1065 (source
1062 (origin 1066 (origin
1063 (method git-fetch) 1067 (method git-fetch)
1064 (uri (git-reference 1068 (uri (git-reference
1065 (url "https://github.com/django/django-contrib-comments") 1069 (url "https://github.com/django/django-contrib-comments")
1066 (commit version))) 1070 (commit (assoc-ref properties 'commit))))
1067 (file-name (git-file-name name version)) 1071 (file-name (git-file-name name version))
1068 (sha256 1072 (sha256
1069 (base32 "17mymw64bm5f19iq6dlpcbbycamy2a0wrnfzrbnw8diysc3fsnpr")))) 1073 (base32 "0rr8vxj8q93b1a8s69a8big0r5h77liwi8ldc7ssk2bfwqb7gh26"))))
1070 (build-system pyproject-build-system) 1074 (build-system pyproject-build-system)
1071 (arguments 1075 (arguments
1072 (list 1076 (list
1073 #:test-backend #~'custom 1077 #:test-backend #~'custom
1074 #:test-flags #~(list "tests/runtests.py"))) 1078 #:test-flags #~(list "tests/runtests.py")))
1075 (native-inputs (list python-setuptools tzdata-for-tests)) 1079 (native-inputs (list python-setuptools tzdata-for-tests))
1076 (propagated-inputs (list python-django-4)) 1080 (propagated-inputs (list python-django))
1077 (home-page "https://github.com/django/django-contrib-comments") 1081 (home-page "https://github.com/django/django-contrib-comments")
1078 (synopsis "Comments framework") 1082 (synopsis "Comments framework")
1079 (description 1083 (description