emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#44787: closed ([PATCH] gnu: Add python-commonmark.)


From: GNU bug Tracking System
Subject: bug#44787: closed ([PATCH] gnu: Add python-commonmark.)
Date: Tue, 24 Nov 2020 12:58:01 +0000

Your message dated Tue, 24 Nov 2020 13:57:35 +0100
with message-id <87y2iqq5ds.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#44787] [PATCH] gnu: Add python-commonmark.
has caused the debbugs.gnu.org bug report #44787,
regarding [PATCH] gnu: Add python-commonmark.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
44787: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=44787
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add python-commonmark. Date: Sat, 21 Nov 2020 23:48:18 -0300
* gnu/packages/python-xyz.scm (python-commonmark): New variable.
---
 gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b53cb25c59..82ce037fde 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8831,6 +8831,32 @@ Supported netlink families and protocols include:
 (define-public python2-wrapt
   (package-with-python2 python-wrapt))
 
+(define-public python-commonmark
+  (package
+    (name "python-commonmark")
+    (version "0.9.1")
+    (source
+     (origin
+       (method url-fetch)
+       (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"))))))
+    (home-page "https://github.com/readthedocs/commonmark.py";)
+    (synopsis "Python parser for the CommonMark Markdown spec")
+    (description
+     "This module is a pure Python port of jgm's @code{commonmark.js}, a
+Markdown parser and renderer for the CommonMark specification, using only
+native modules.")
+    (license license:bsd-3)))
+
 (define-public python-xlrd
   (package
     (name "python-xlrd")
-- 
2.20.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#44787] [PATCH] gnu: Add python-commonmark. Date: Tue, 24 Nov 2020 13:57:35 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)
Hello,

Vinicius Monego <monego@posteo.net> writes:

> * gnu/packages/python-xyz.scm (python-commonmark): New variable.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]