mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
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:
parent
9920187597
commit
7639cca683
1 changed files with 21 additions and 0 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue