guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 5c23eced7534ae3956bc21c10ca8ca13b933e995 Author: Felix Gruber <fel...@posteo.net> AuthorDate: Thu Jan 23 19:47:31 2025 +0000
gnu: python-pygments: Update to 2.19.1. * gnu/packages/python-xyz.scm (python-pygments): Update to 2.19.1. [source]: Fix pypi package name; with capital P, the download doesn't work. [native-inputs]: Add python-hatchling; remove python-setuptools and python-wheel. Change-Id: I85bf3cb2a8c4a996586e820bd582dea777ef930d Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com> --- gnu/packages/python-xyz.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c29bcbeebe..207faadc6e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8530,14 +8530,14 @@ with Python.") (define-public python-pygments (package (name "python-pygments") - (version "2.15.1") + (version "2.19.1") (source (origin (method url-fetch) - (uri (pypi-uri "Pygments" version)) + (uri (pypi-uri "pygments" version)) (sha256 (base32 - "0p3p28fif7m2w5mkd0z99zk9xwgrs3m61x85415qk0fl3ly4vkla")))) + "07qm8mx3y5r8ri6zpn0hp9zx5g02bydhi7pkv54hdp3nhlm6vhb1")))) (build-system pyproject-build-system) (arguments (list @@ -8546,7 +8546,7 @@ with Python.") ;; basic tests. '(list "--ignore-glob=tests/*/*"))) (native-inputs - (list python-pytest python-setuptools python-wheel)) + (list python-hatchling python-pytest)) (home-page "https://pygments.org/") (synopsis "Syntax highlighting") (description