diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-06-09 22:29:46 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-06-15 10:40:34 +0200 |
| commit | 9b90033fa809ef7bd71f2a963caf563ca1ba5470 (patch) | |
| tree | 758e253b3e0015f436fcfc265c688121eb790a54 /gnu/packages/python-xyz.scm | |
| parent | cf09bda7c52664b99ad2928e757cbac0e037829c (diff) | |
gnu: Add python-ipython-pygments-lexers.
* gnu/packages/python-xyz.scm (python-ipython-pygments-lexers): New variable.
Change-Id: Ibe541fa133d4ec4c47f8f3cbaab038776d81be60
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2fc06cd0db..fc24e5d9ee 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14676,6 +14676,29 @@ computing.") texlive-xetex texlive-xindy)))))) +(define-public python-ipython-pygments-lexers + (package + (name "python-ipython-pygments-lexers") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ipython/ipython-pygments-lexers/") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "154vbpp9mkblsk1d0w8x8mybwgn5gz6mjgg77nqyn75ky0banrd7")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-pygments)) + (native-inputs (list python-flit-core python-pytest)) + (home-page "https://github.com/ipython/ipython-pygments-lexers/") + (synopsis "Plugin for IPython code sessions") + (description + "This package defines a variety of Pygments lexers for highlighting IPython +code.") + (license license:bsd-3))) + (define-public python-uri-template (package (name "python-uri-template") |
