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 (define-public python-django-taggit
(package (package
(name "python-django-taggit") (name "python-django-taggit")
(version "1.3.0") (version "6.1.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (pypi-uri "django-taggit" version)) (uri (git-reference
(url "https://github.com/jazzband/django-taggit")
(commit version)))
(sha256 (sha256
(base32 (base32
"0bbkabbs77z229ps0800gxfhf75yagp4x4j5jzfysbac3zvkp0sa")))) "1i8an3wcl7nygl5f565jcpyhyws9gabawazggxpf6m3vklxn3cj0"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments (arguments
'(#:phases '(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
@ -394,13 +396,14 @@ when coding custom template tags.")
(lambda _ (lambda _
(invoke "python3" "-m" "django" "test" "--settings=tests.settings")))))) (invoke "python3" "-m" "django" "test" "--settings=tests.settings"))))))
(propagated-inputs (propagated-inputs
(list python-django python-isort)) (list python-django))
(native-inputs (native-inputs
(list python-pytest python-mock)) (list python-django-rest-framework
(home-page python-setuptools
"https://github.com/jazzband/django-taggit") python-wheel
(synopsis tzdata-for-tests))
"Reusable Django application for simple tagging") (home-page "https://github.com/jazzband/django-taggit")
(synopsis "Reusable Django application for simple tagging")
(description (description
"Django-taggit is a reusable Django application for simple tagging.") "Django-taggit is a reusable Django application for simple tagging.")
(license license:bsd-3))) (license license:bsd-3)))