guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add python-markdown.


From: Leo Famulari
Subject: 01/01: gnu: Add python-markdown.
Date: Sat, 02 Jan 2016 05:14:11 +0000

lfam pushed a commit to branch master
in repository guix.

commit b98939088987b68fd41d85226e30650d6dd7e80e
Author: Erik Edrosa <address@hidden>
Date:   Fri Jan 1 15:28:46 2016 -0500

    gnu: Add python-markdown.
    
    * gnu/packages/python.scm (python-markdown, python2-markdown): New
    variables.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/python.scm |   35 ++++++++++++++++++++++++++++++++++-
 1 files changed, 34 insertions(+), 1 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index b8afe3c..4ab1eed 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13,7 +13,7 @@
 ;;; Copyright © 2015 David Thompson <address@hidden>
 ;;; Copyright © 2015 Leo Famulari <address@hidden>
 ;;; Copyright © 2015 Ben Woodcroft <address@hidden>
-;;; Copyright © 2015 Erik Edrosa <address@hidden>
+;;; Copyright © 2015, 2016 Erik Edrosa <address@hidden>
 ;;; Copyright © 2015 Efraim Flashner <address@hidden>
 ;;; Copyright © 2015 Kyle Meyer <address@hidden>
 ;;; Copyright © 2015 Chris Marusich <address@hidden>
@@ -5145,6 +5145,39 @@ Python.")
 (define-public python2-mistune
   (package-with-python2 python-mistune))
 
+(define-public python-markdown
+  (package
+    (name "python-markdown")
+    (version "2.6.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "Markdown" version))
+       (sha256
+        (base32
+         "0q758a3fiiawr20b3hhjfs677cwj6xi284yb7xspcvv0fdicz54d"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+                  (lambda _
+                    (zero? (system* "python" "run-tests.py")))))))
+    (native-inputs
+     `(("python-nose" ,python-nose)
+       ("python-pyyaml" ,python-pyyaml)))
+    (home-page "https://pythonhosted.org/Markdown/";)
+    (synopsis "Python implementation of Markdown")
+    (description
+     "This package provides a Python implementation of John Gruber's
+Markdown.  The library features international input, various Markdown
+extensions, and several HTML output formats.  A command line wrapper
+markdown_py is also provided to convert Markdown files to HTML.")
+    (license bsd-3)))
+
+(define-public python2-markdown
+  (package-with-python2 python-markdown))
+
 (define-public python-ptyprocess
   (package
     (name "python-ptyprocess")



reply via email to

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