guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 836f633a42e3fd8075b512eb652d17f77d338192 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sat Aug 9 15:09:48 2025 +0100
gnu: python-commonmark: Switch to pyproject-build-system. * gnu/packages/python-xyz.scm (python-commonmark): [build-system]: Use pyproject. [arguments] <phases>: Use default 'check. [native-inputs]: Add python-setuptools. Change-Id: I820373fc3e23ccb3222a6409e0ea7b977376e776 --- gnu/packages/python-xyz.scm | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3f4b21da20..3e7f1950d7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17702,6 +17702,8 @@ list format (also known as ASCII plist), written in Cython.") dependency resolution logic.") (license license:isc))) +;; XXX: Deprecated package: this project was archived by the owner on Mar 26, +;; 2022. It is now read-only. (define-public python-commonmark (package (name "python-commonmark") @@ -17712,14 +17714,9 @@ dependency resolution logic.") (uri (pypi-uri "commonmark" version)) (sha256 (base32 "0q7d39lm8kcingpmykk5r959hrwwj6v2icyw3mihczxyb749sbs5")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key inputs outputs #:allow-other-keys) - (add-installed-pythonpath inputs outputs) - (invoke "python" "setup.py" "test")))))) + (build-system pyproject-build-system) + (native-inputs + (list python-setuptools)) (home-page "https://github.com/readthedocs/commonmark.py") (synopsis "Python parser for the CommonMark Markdown spec") (description