From f6c010ea7e3ca390c8094372f776b8d43406711a Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 24 Oct 2025 11:58:25 +0100 Subject: [PATCH] gnu: python-tracerite: Move to pyhton-web. * gnu/packages/python-xyz.scm (python-tracerite): Move from here ... * gnu/packages/python-web.scm: ... to here. Change-Id: I4b0935e500eab0af69f2547cedee3743b32c117c --- gnu/packages/python-web.scm | 25 +++++++++++++++++++++++++ gnu/packages/python-xyz.scm | 22 ---------------------- 2 files changed, 25 insertions(+), 22 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index e65bb98141fde0a13aafd1647ebe8655f79d747c..3716b6811522ef6345b8f922a4dee5a672a19ad1 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -3930,6 +3930,31 @@ high-speed transfers via libcurl and frequently outperforms alternatives.") ;; under the terms of LGPLv2.1+ or Expat. (license (list license:lgpl2.1+ license:expat)))) +(define-public python-tracerite + (package + (name "python-tracerite") + (version "1.1.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "tracerite" version)) + (sha256 + (base32 "07mkg0sl0h335kj6yjvxki2c19gxhb7rkks1zgzh7aj0y83c17qi")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests in PyPI or Git + (native-inputs + (list python-setuptools + python-setuptools-scm)) + (propagated-inputs + (list python-html5tagger)) + (home-page "https://github.com/sanic-org/tracerite") + (synopsis "Human-readable HTML tracebacks") + (description + "@code{tracerite} converts Python tracebacks into useful error messages +in human-readable HTML format.") + (license license:unlicense))) + (define-public python-trio-websocket (package (name "python-trio-websocket") diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 74698c85a028fbbb394094a8db3417c3f6594bf7..fc7c0c5c5b3f9c6f9d0df66168c0872e95ba3b80 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27127,28 +27127,6 @@ distributions. It authenticates the user over HTTPS, allows them to pre-sign their files and supports any packaging format (including wheels).") (license license:asl2.0))) -(define-public python-tracerite - (package - (name "python-tracerite") - (version "1.1.3") - (source (origin - (method url-fetch) - (uri (pypi-uri "tracerite" version)) - (sha256 - (base32 - "07mkg0sl0h335kj6yjvxki2c19gxhb7rkks1zgzh7aj0y83c17qi")))) - (build-system pyproject-build-system) - (arguments - (list #:tests? #f)) ;no tests in PyPI or Git - (native-inputs (list python-setuptools python-setuptools-scm)) - (propagated-inputs (list python-html5tagger)) - (home-page "https://github.com/sanic-org/tracerite") - (synopsis "Human-readable HTML tracebacks") - (description - "@code{tracerite} converts Python tracebacks into useful error messages -in human-readable HTML format.") - (license license:unlicense))) - ;; XXX: This project was archived by the owner on Oct 4, 2023. It is now ;; read-only. Consider to remvoe when nothing depends on it. (define-public python-ratelimiter