guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: python-pycodestyle: Update to 2.8.0.


From: guix-commits
Subject: 01/05: gnu: python-pycodestyle: Update to 2.8.0.
Date: Tue, 7 Jun 2022 02:49:39 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 2660f99b5761d215555dc0f95a562ba68e4a0f77
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Mon Jun 6 22:13:03 2022 +0200

    gnu: python-pycodestyle: Update to 2.8.0.
    
    * gnu/packages/python-xyz.scm (python-pycodestyle): Update to 2.8.0.
    [arguments]: Respect tests?.
    
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 gnu/packages/python-xyz.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7c9c0b2cc6..56a3972703 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6468,21 +6468,22 @@ a simple netcat replacement with chaining support.")
 (define-public python-pycodestyle
   (package
     (name "python-pycodestyle")
-    (version "2.7.0")
+    (version "2.8.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "pycodestyle" version))
        (sha256
         (base32
-         "1vqwmzmjdv331kmfq3q9j3as2x7r2r49lf83r9w4147pdg8c32f3"))))
+         "0zxyrg8029lzjhima6l5nk6y0z6lm5wfp9qchz3s33j3xx3mipgd"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
        (modify-phases %standard-phases
          (replace 'check
-           (lambda _
-             (invoke "pytest" "-vv"))))))
+           (lambda* (#:key tests? #:allow-other-keys)
+             (when tests?
+               (invoke "pytest" "-vv")))))))
     (native-inputs
      (list python-pytest))
     (home-page "https://pycodestyle.readthedocs.io/";)



reply via email to

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