rekado pushed a commit to branch master
in repository guix.
commit 81e00a1c4c50eeef32800a151a812cd4bc4db3c6
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Sat Jan 11 14:16:28 2025 +0100
gnu: python-django-taggit: Update to 6.1.0.
* gnu/packages/django.scm (python-django-taggit): Update to 6.1.0.
[source]: Fetch git repository.
[build-system]: Use pyproject-build-system.
[propagated-inputs]: Remove python-isort.
[native-inputs]: Remove python-mock and python-pytest; add
python-django-rest-framework, python-setuptools, python-wheel, and
tzdata-for-tests.
Change-Id: Ic419f0753b2628075c8005db4edd4c06c318595a
---
gnu/packages/django.scm | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index cc18a30709..42aaba963f 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -378,15 +378,17 @@ when coding custom template tags.")
(define-public python-django-taggit
(package
(name "python-django-taggit")
- (version "1.3.0")
+ (version "6.1.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "django-taggit" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jazzband/django-taggit")
+ (commit version)))
(sha256
(base32
- "0bbkabbs77z229ps0800gxfhf75yagp4x4j5jzfysbac3zvkp0sa"))))
- (build-system python-build-system)
+ "1i8an3wcl7nygl5f565jcpyhyws9gabawazggxpf6m3vklxn3cj0"))))
+ (build-system pyproject-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
@@ -394,13 +396,14 @@ when coding custom template tags.")
(lambda _
(invoke "python3" "-m" "django" "test"
"--settings=tests.settings"))))))
(propagated-inputs
- (list python-django python-isort))
+ (list python-django))
(native-inputs
- (list python-pytest python-mock))
- (home-page
- "https://github.com/jazzband/django-taggit")
- (synopsis
- "Reusable Django application for simple tagging")
+ (list python-django-rest-framework
+ python-setuptools
+ python-wheel
+ tzdata-for-tests))
+ (home-page "https://github.com/jazzband/django-taggit")
+ (synopsis "Reusable Django application for simple tagging")
(description
"Django-taggit is a reusable Django application for simple tagging.")
(license license:bsd-3)))