diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9962a367b42..a93c2f586af 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17646,6 +17646,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") @@ -17656,14 +17658,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