guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: Add python-markdownify.


From: guix-commits
Subject: 01/04: gnu: Add python-markdownify.
Date: Sat, 8 Jan 2022 17:28:30 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 98a7d68eb4a03f94fb2478d1cdf4b477e91d3ed9
Author: Giacomo Leidi <goodoldpaul@autistici.org>
AuthorDate: Mon Jan 3 01:18:35 2022 +0100

    gnu: Add python-markdownify.
    
    * gnu/packages/markup.scm (python-markdownify): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/markup.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm
index cee3207ee5..5f2f525cd2 100644
--- a/gnu/packages/markup.scm
+++ b/gnu/packages/markup.scm
@@ -37,11 +37,13 @@
   #:use-module (guix build-system python)
   #:use-module (guix utils)
   #:use-module (gnu packages base)
+  #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages web))
 
 (define-public hoedown
@@ -237,6 +239,29 @@ implementation.
 @end example")
     (license license:perl-license)))
 
+(define-public python-markdownify
+  (package
+    (name "python-markdownify")
+    (version "0.10.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "markdownify" version))
+       (sha256
+        (base32
+         "0msvrsgq9jigbgg7r7iq7ql5bgslmbxd8sq0nmpbxrjwqypgs7w2"))))
+    (build-system python-build-system)
+    (native-inputs
+     (list python-pytest))
+    (propagated-inputs
+     (list python-flake8 python-beautifulsoup4 python-six))
+    (home-page
+     "https://github.com/matthewwithanm/python-markdownify";)
+    (synopsis "Converts HTML to Markdown")
+    (description "This package provides @code{markdownify} a Python library to
+convert HTML to Markdown.")
+    (license license:expat)))
+
 (define-public cmark
   (package
     (name "cmark")



reply via email to

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