[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/222: gnu: python-pygments: Update to 2.15.1.
From: |
guix-commits |
Subject: |
01/222: gnu: python-pygments: Update to 2.15.1. |
Date: |
Fri, 1 Nov 2024 10:56:11 -0400 (EDT) |
sharlatan pushed a commit to branch python-team
in repository guix.
commit 8eddc577798488a002e8818cdefd3ae9de3d9cd2
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Jul 6 23:18:47 2023 +0200
gnu: python-pygments: Update to 2.15.1.
* gnu/packages/python-xyz.scm (python-pygments): Update to 2.15.1.
[build-system]: Use pyproject-build-system.
[arguments]: Run tests.
[native-inputs]: Add python-pytest.
---
gnu/packages/python-xyz.scm | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c01e6d799b..5f523c66bd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7215,18 +7215,23 @@ with Python.")
(define-public python-pygments
(package
(name "python-pygments")
- (version "2.12.0")
+ (version "2.15.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Pygments" version))
(sha256
(base32
- "1sr6iqh21xi6p8aba4wa9pqfhjbbpcvn9jcsx0ggy4lniw8idcay"))))
- (build-system python-build-system)
+ "0p3p28fif7m2w5mkd0z99zk9xwgrs3m61x85415qk0fl3ly4vkla"))))
+ (build-system pyproject-build-system)
(arguments
- ;; FIXME: Tests require sphinx, which depends on this.
- '(#:tests? #f))
+ (list
+ #:test-flags
+ ;; Some tests require sphinx, which depends on this, so we only run
+ ;; basic tests.
+ '(list "--ignore-glob=tests/*/*")))
+ (native-inputs
+ (list python-pytest))
(home-page "https://pygments.org/")
(synopsis "Syntax highlighting")
(description
- branch python-team created (now 6dadf52157), guix-commits, 2024/11/01
- 01/222: gnu: python-pygments: Update to 2.15.1.,
guix-commits <=
- 04/222: gnu: python-sphinx: Update to 5.3.0., guix-commits, 2024/11/01
- 02/222: gnu: python-imagesize: Update to 1.4.1., guix-commits, 2024/11/01
- 06/222: build-system/python: Ignore symlinks when changing mtime., guix-commits, 2024/11/01
- 08/222: gnu: sssd: Import ensure-no-mtimes-pre-1980., guix-commits, 2024/11/01
- 10/222: build-system/pyproject: Use TOML parser., guix-commits, 2024/11/01
- 11/222: gnu: python-pytest-xdist: Disable failing test., guix-commits, 2024/11/01
- 21/222: gnu: python-markdown-it-py: Update to 3.0.0., guix-commits, 2024/11/01
- 38/222: gnu: python-argcomplete: Add missing input., guix-commits, 2024/11/01
- 42/222: gnu: python-pynacl: Add missing inputs., guix-commits, 2024/11/01
- 30/222: gnu: python-traitlets: Update to 5.14.1., guix-commits, 2024/11/01