guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: python-markdownify: Update to 0.11.6, fix bu


From: guix-commits
Subject: branch master updated: gnu: python-markdownify: Update to 0.11.6, fix build.
Date: Wed, 03 May 2023 05:58:43 -0400

This is an automated email from the git hooks/post-receive script.

iyzsong pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new bfe513eeb3 gnu: python-markdownify: Update to 0.11.6, fix build.
bfe513eeb3 is described below

commit bfe513eeb39a3325d1d8a6e23121f7ab4165a874
Author: 宋文武 <iyzsong@member.fsf.org>
AuthorDate: Wed May 3 17:56:27 2023 +0800

    gnu: python-markdownify: Update to 0.11.6, fix build.
    
    * gnu/packages/markup.scm (python-markdownify): Update 0.11.6.
    [arguments]: Run tests using 'pytest'.
    [propagated-inputs]: Remove python-flake8.
---
 gnu/packages/markup.scm | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm
index 9162b008e0..cdd9891352 100644
--- a/gnu/packages/markup.scm
+++ b/gnu/packages/markup.scm
@@ -310,19 +310,25 @@ GitHub cmark fork (@code{cmark-gfm}).")
 (define-public python-markdownify
   (package
     (name "python-markdownify")
-    (version "0.10.1")
+    (version "0.11.6")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "markdownify" version))
        (sha256
         (base32
-         "0msvrsgq9jigbgg7r7iq7ql5bgslmbxd8sq0nmpbxrjwqypgs7w2"))))
+         "1zlvwiapcvzaz7nmviffz3q147h1skf2amh83npqwk4z1h7296q0"))))
     (build-system python-build-system)
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (replace 'check
+                 (lambda* (#:key tests? #:allow-other-keys)
+                   (when tests? (invoke "pytest" "-v" "tests")))))))
     (native-inputs
      (list python-pytest))
     (propagated-inputs
-     (list python-flake8 python-beautifulsoup4 python-six))
+     (list python-beautifulsoup4 python-six))
     (home-page
      "https://github.com/matthewwithanm/python-markdownify";)
     (synopsis "Converts HTML to Markdown")



reply via email to

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