guix-commits
[Top][All Lists]
Advanced

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

07/28: gnu: python-tenacity: Update to 8.0.1.


From: guix-commits
Subject: 07/28: gnu: python-tenacity: Update to 8.0.1.
Date: Sat, 22 Jan 2022 04:23:43 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 98d9869412156b0f786445f9e84184c5575f054a
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Jan 21 20:33:22 2022 +0100

    gnu: python-tenacity: Update to 8.0.1.
    
    * gnu/packages/python-xyz.scm (python-tenacity): Update to 8.0.1.
    [propagated-inputs]: Remove.
    [native-inputs]: Add PYTHON-TYPEGUARD.  Remove PYTHON-SPHINX.
    [arguments]: Rewrite in gexp style.
---
 gnu/packages/python-xyz.scm | 17 +++++++----------
 1 file changed, 7 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1afc1a2850..7d3a8c7a5f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -710,25 +710,22 @@ threads.")
 (define-public python-tenacity
   (package
     (name "python-tenacity")
-    (version "6.1.0")
+    (version "8.0.1")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "tenacity" version))
               (sha256
                (base32
-                "1j36v9fcpmmd4985ix0cwnvcq71rkrn5cjiiv0id9vkl4kpxh0gv"))))
+                "0bwkvjpjfyi9dgszzad9aww2vc00w3bczjnbifi92cp7wch2l923"))))
     (build-system python-build-system)
     (native-inputs
-     (list python-setuptools-scm python-sphinx python-tornado
+     (list python-setuptools-scm python-tornado python-typeguard
            python-pytest))
-    (propagated-inputs
-     (list python-six))
     (arguments
-     `(#:phases (modify-phases %standard-phases
-                  (replace 'check
-                    (lambda _
-                      (invoke "pytest")
-                      #t)))))
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (replace 'check
+                 (lambda _ (invoke "pytest" "-vv"))))))
     (home-page "https://github.com/jd/tenacity";)
     (synopsis "Retrying library for python")
     (description "Tenacity is a general-purpose python library to simplify the



reply via email to

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