gnu: Add python-pygments-github-lexers.

* gnu/packages/python-xyz.scm (python-pygments-github-lexers): New variable.
This commit is contained in:
Ricardo Wurmus 2021-04-13 12:10:02 +02:00
parent 3bd962bc3c
commit 2572bc8125
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3735,6 +3735,25 @@ (define-public python2-pygments
(base32
"1zmhnswy0wxfn0xprs9aqsvx2c3kmzfn2wx14q8cv3vpkxdamj4q")))))))
(define-public python-pygments-github-lexers
(package
(name "python-pygments-github-lexers")
(version "0.0.5")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pygments-github-lexers" version))
(sha256
(base32
"0cz14clcc9z4pn79ll8hp3xzgsrfjscak5zfsvlgrz6ngkkmgjma"))))
(build-system python-build-system)
(propagated-inputs
`(("python-pygments" ,python-pygments)))
(home-page "https://github.com/liluo/pygments-github-lexers")
(synopsis "Pygments Github custom lexers")
(description "This package installs Github custom lexers to Pygments.")
(license license:bsd-3)))
(define-public python-bump2version
(package
(name "python-bump2version")