guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 110048746afec8e20b138c0e8ab68e2de605b0fb
Author: Felix Gruber <[email protected]>
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 <[email protected]>
---
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 08ec2ac0ae..3022177c2b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8499,14 +8499,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
@@ -8515,7 +8515,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