guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: python-pytelegrambotapi: Use new style.


From: guix-commits
Subject: branch master updated: gnu: python-pytelegrambotapi: Use new style.
Date: Thu, 11 Jul 2024 22:54:44 -0400

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

jgart pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 74ed0a9f15 gnu: python-pytelegrambotapi: Use new style.
74ed0a9f15 is described below

commit 74ed0a9f15148e3267a5a0962842b2b1d40c41d3
Author: jgart <jgart@dismail.de>
AuthorDate: Thu Jul 11 21:49:59 2024 -0500

    gnu: python-pytelegrambotapi: Use new style.
    
    * gnu/packages/python-xyz.scm (python-pytelegrambotapi) [arguments]: Use new
    style.
    
    Change-Id: Id31d34d9c09330f7a5aa723ca1a1352b6736d875
---
 gnu/packages/python-xyz.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3e0c8a976a..cc83c72dd2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2083,14 +2083,14 @@ task of adding retry behavior to just about anything.")
         (base32 "0r7g5zs0fk3g2dxvbpl0pi730x7r2kalrhn30fs0pvc15a59fmxz"))))
     (build-system python-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests?
-               (with-directory-excursion "tests"
-                 (invoke "py.test")))
-             #t)))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (replace 'check
+            (lambda* (#:key tests? #:allow-other-keys)
+              (when tests?
+                (with-directory-excursion "tests"
+                  (invoke "py.test"))))))))
     (propagated-inputs
      (list python-requests))
     (native-inputs



reply via email to

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