diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-11 14:16:28 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:44 +0100 |
commit | 81e00a1c4c50eeef32800a151a812cd4bc4db3c6 (patch) | |
tree | 7d607b0bf9e6e4d4ade172c94fcec5818040b676 /gnu/packages/django.scm | |
parent | e85a9c3e481701e9e1201cfdc360dae78fb1ca5e (diff) |
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
Diffstat (limited to 'gnu/packages/django.scm')
-rw-r--r-- | gnu/packages/django.scm | 25 |
1 files 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))) |