diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-05 12:14:40 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:19:00 +0000 |
commit | e9720c60497c05f40528806489475fc54b3b859e (patch) | |
tree | f2b47e6d1ea4bc4576e6106eeb348cb7d6586aaa | |
parent | 577027a2aa1b053ce15895d34d6da2a1f37109d3 (diff) | |
download | guix-e9720c60497c05f40528806489475fc54b3b859e.tar guix-e9720c60497c05f40528806489475fc54b3b859e.tar.gz |
gnu: Remove python-m2r.
This package is not maintained, not in use by any others in Guix and
failed to build, see <https://ci.guix.gnu.org/build/4350959/details>.
Message from upstream: "This repository has been archived by the owner
on Nov 17, 2022. It is now read-only."
* gnu/packages/python-xyz.scm (python-m2r): Delete variable.
Change-Id: Ifd23880408b8d7d6db412e22c6e93ebe09831833
-rw-r--r-- | gnu/packages/python-xyz.scm | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a4be04806c..ca2173c6f4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -24678,35 +24678,6 @@ manipulation and interaction with formal grammars.") transducers).") (license license:expat))) -(define-public python-m2r - (package - (name "python-m2r") - (version "0.3.1") - (source (origin - (method url-fetch) - (uri (pypi-uri "m2r" version)) - (sha256 - (base32 - "1asnwazfznbs0r7x03pj5ns4npz18z3kli538sgdicfg97y6gyxa")) - (modules '((guix build utils))) - (snippet - ;; Adjust test regex for Python 3.10 compatibility. - ;; Taken from upstream pull request: - ;; https://github.com/miyakogi/m2r/pull/62 - '(substitute* "tests/test_cli.py" - (("self.assertIn\\('optional arguments:', message\\)") - "self.assertRegex(message, r'option(s|al arguments):')"))))) - (build-system python-build-system) - (propagated-inputs - (list python-docutils python-mistune)) - (native-inputs - (list python-pygments python-mock)) - (home-page "https://github.com/miyakogi/m2r") - (synopsis "Markdown to reStructuredText converter") - (description "M2R converts a markdown file including reST markups to valid - reST format.") - (license license:expat))) - (define-public python-constantly (package (name "python-constantly") |