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
This commit is contained in:
Ricardo Wurmus 2025-01-11 14:16:28 +01:00
parent e85a9c3e48
commit 81e00a1c4c
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

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