summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-07-18 03:54:04 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:27 +0100
commitfbcf53636e68cbe8492e45993bd970c3f41a9a34 (patch)
treece74562374d9ddfb176a25dde3bd30565ef3b666
parentb4d7cb509811a31be34a1a11d4cdb6e396ee851b (diff)
gnu: python-tracerite: Update to 2.5.2.
* gnu/packages/python-web.scm (python-tracerite): Update to 2.5.2. [native-inputs]: Remove python-setuptools and python-setuptools-scm; add python-hatch-vcs and python-hatchling. Relates-to: guix/guix!10013 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-web.scm7
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 0126ef2106c..f96a2f42b9c 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5354,19 +5354,18 @@ Public Suffix List's private domains as well.")
5354(define-public python-tracerite 5354(define-public python-tracerite
5355 (package 5355 (package
5356 (name "python-tracerite") 5356 (name "python-tracerite")
5357 (version "1.1.3") 5357 (version "2.5.2")
5358 (source 5358 (source
5359 (origin 5359 (origin
5360 (method url-fetch) 5360 (method url-fetch)
5361 (uri (pypi-uri "tracerite" version)) 5361 (uri (pypi-uri "tracerite" version))
5362 (sha256 5362 (sha256
5363 (base32 "07mkg0sl0h335kj6yjvxki2c19gxhb7rkks1zgzh7aj0y83c17qi")))) 5363 (base32 "087i51ybbj62nx5jzx8znhqb6cd7279mi7v9j6lrxf8lhb81nr3r"))))
5364 (build-system pyproject-build-system) 5364 (build-system pyproject-build-system)
5365 (arguments 5365 (arguments
5366 (list #:tests? #f)) ;no tests in PyPI or Git 5366 (list #:tests? #f)) ;no tests in PyPI or Git
5367 (native-inputs 5367 (native-inputs
5368 (list python-setuptools 5368 (list python-hatch-vcs python-hatchling))
5369 python-setuptools-scm))
5370 (propagated-inputs 5369 (propagated-inputs
5371 (list python-html5tagger)) 5370 (list python-html5tagger))
5372 (home-page "https://github.com/sanic-org/tracerite") 5371 (home-page "https://github.com/sanic-org/tracerite")