guix-commits
[Top][All Lists]
Advanced

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

217/242: gnu: python-sphinx-click: Update to 4.0.3 and enable tests.


From: guix-commits
Subject: 217/242: gnu: python-sphinx-click: Update to 4.0.3 and enable tests.
Date: Wed, 11 May 2022 18:03:29 -0400 (EDT)

apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.

commit 7cb26394d9d0712954f3ab4a443dd95d3fd39845
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Apr 21 21:49:02 2022 -0400

    gnu: python-sphinx-click: Update to 4.0.3 and enable tests.
    
    * gnu/packages/sphinx.scm (python-sphinx-click): Update to 4.0.3.
    [arguments]: Delete field.
    [native-inputs]: Delete python-coverage.  Add python-pytest and 
python-wheel.
    Move python-click, python-docutils and python-sphinx to...
    [propagated-inputs]: ... here.
---
 gnu/packages/sphinx.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 5788bb7870..739d32398c 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -242,23 +242,23 @@ Apple help books.")
 (define-public python-sphinx-click
   (package
     (name "python-sphinx-click")
-    (version "3.0.1")
+    (version "4.0.3")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "sphinx-click" version))
        (sha256
         (base32
-         "118ppsymp1p2gn8v7mifika817qx6v07mja7kxizq9cg7dpw894v"))))
+         "1nqy3b7wr64rbmdp7kpi723az53a89y6250h46i505g1rw0czam1"))))
     (build-system python-build-system)
     (arguments
-     `(#:tests? #f))                    ;requires python-coverage<5.0
-    (native-inputs
-     (list python-click
-           python-coverage
-           python-docutils
-           python-pbr
-           python-sphinx))
+     (list #:phases #~(modify-phases %standard-phases
+                        (replace 'check
+                          (lambda* (#:key tests? #:allow-other-keys)
+                            (when tests?
+                              (invoke "pytest" "-vv" "tests")))))))
+    (native-inputs (list python-pbr python-pytest python-wheel))
+    (propagated-inputs (list python-click python-docutils python-sphinx))
     (home-page "https://github.com/click-contrib/sphinx-click";)
     (synopsis "Sphinx extension that documents click applications")
     (description "This package provide sphinx extension that automatically



reply via email to

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