[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/361: gnu: python-pygments: Update to 2.15.1.
From: |
guix-commits |
Subject: |
01/361: gnu: python-pygments: Update to 2.15.1. |
Date: |
Fri, 22 Nov 2024 06:00:00 -0500 (EST) |
andreas pushed a commit to branch python-team
in repository guix.
commit 600cc61f8f5222b831321130f7e43f03354932a4
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 ceb122e08d..94cf078043 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7219,18 +7219,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 3caebd91fa), guix-commits, 2024/11/22
- 01/361: gnu: python-pygments: Update to 2.15.1.,
guix-commits <=
- 02/361: gnu: python-imagesize: Update to 1.4.1., guix-commits, 2024/11/22
- 04/361: gnu: python-sphinx: Update to 5.3.0., guix-commits, 2024/11/22
- 07/361: gnu: criu: Remove temporary workaround., guix-commits, 2024/11/22
- 05/361: build-system/pyproject: Use python-sans-pip-wrapper as default-python., guix-commits, 2024/11/22
- 10/361: build-system/pyproject: Use TOML parser., guix-commits, 2024/11/22
- 12/361: guix: pyproject-build-system: Default configure-flags to empty dictionary., guix-commits, 2024/11/22
- 15/361: gnu: Add missing import., guix-commits, 2024/11/22
- 46/361: gnu: python-mysqlclient: Add missing inputs., guix-commits, 2024/11/22
- 44/361: gnu: python-itemloaders: Fix indentation., guix-commits, 2024/11/22
- 62/361: gnu: python-nbconvert: Add missing texlive inputs., guix-commits, 2024/11/22