gnu: Add python-pygments-bootstrap.

* gnu/packages/python-build.scm (python-pygments-bootstrap): New variable.

Change-Id: I30049d78d5e59302da0d95c674eb2d03637ecfd8
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2026-01-01 11:46:15 +01:00 committed by Sharlatan Hellseher
parent 9920187597
commit 7639cca683
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -147,6 +147,27 @@ Language (TOML) configuration files.")
write-only counterpart to Tomli, which is a read-only TOML parser.")
(license license:expat)))
(define-public python-pygments-bootstrap
(package
(name "python-pygments-bootstrap")
(version "2.19.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pygments" version))
(sha256
(base32
"07qm8mx3y5r8ri6zpn0hp9zx5g02bydhi7pkv54hdp3nhlm6vhb1"))))
(build-system pyproject-build-system)
(arguments (list #:tests? #f))
(native-inputs
(list python-hatchling))
(home-page "https://pygments.org/")
(synopsis "Syntax highlighting")
(description
"Pygments is a syntax highlighting package written in Python.")
(license license:bsd-2)))
(define-public python-pytoml
(package
(name "python-pytoml")