GNU bug report logs - #49338
[PATCH 0/8] Repo2docker packages

Previous Next

Package: guix-patches;

Reported by: Hugo Lecomte <hugo.lecomte <at> inria.fr>

Date: Fri, 2 Jul 2021 18:58:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludovic.courtes <at> inria.fr>

Bug is archived. No further changes may be made.

Full log


Message #14 received at 49338 <at> debbugs.gnu.org (full text, mbox):

From: Hugo Lecomte <hugo.lecomte <at> inria.fr>
To: 49338 <at> debbugs.gnu.org
Cc: Hugo Lecomte <hugo.lecomte <at> inria.fr>
Subject: [PATCH 2/8] gnu: Add python-recommonmark.
Date: Mon,  5 Jul 2021 09:29:25 +0200
* gnu/packages/python-xyz.scm (python-recommonmark): New variable.
---
 gnu/packages/python-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8f3a436e81..0796228109 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26061,3 +26061,32 @@ representing paths or filenames.")
      "Provide a generic API, given a set of safe characters and an escape character,
 to escape safe strings and unescape the result.")
     (license license:expat)))
+
+(define-public python-recommonmark
+  (package
+    (name "python-recommonmark")
+    (version "0.7.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "recommonmark" version))
+       (sha256
+        (base32
+         "0rvdd2ikdr0yg6cx6594fdzn53cmdc0g0i6qsbcdq8i2kxjdpd5x"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-commonmark" ,python-commonmark)
+       ("python-docutils" ,python-docutils)
+       ("python-sphinx" ,python-sphinx)))
+    (arguments
+     '(#:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'delete-test-sphinx
+                    (lambda* (#:key outputs #:allow-other-keys)
+                      (let* ((out (assoc-ref outputs "out")))
+                        (delete-file "tests/test_sphinx.py")))))))
+    (home-page "https://github.com/readthedocs/recommonmark")
+    (synopsis "Docutils-compatibility bridge to CommonMark")
+    (description
+     "A docutils-compatibility bridge to CommonMark, enabling you to write
+CommonMark inside of Docutils & Sphinx projects.")
+    (license license:expat)))
-- 
2.31.1





This bug report was last modified 4 years and 32 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.