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

commit ea61c87ebc69cd7e8742cd3cd0ba9f12bbb77bd2
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Apr 19 11:10:41 2022 -0400

    gnu: mbed-tools: Update to 7.53.0 and relax click version requirement.
    
    * gnu/packages/embedded.scm (mbed-tools): Update to 7.53.0.
    [phases]{relax-requirements}: New phase.
---
 gnu/packages/embedded.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index de8d2944bc..9257eea3b0 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2020, 2021, 2022 Simon South <[email protected]>
 ;;; Copyright © 2021 Morgan Smith <[email protected]>
 ;;; Copyright © 2022 Mathieu Othacehe <[email protected]>
+;;; Copyright © 2022 Maxim Cournoyer <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1647,17 +1648,22 @@ whereas kdmx creates pseudo-ttys.")
 (define-public mbed-tools
   (package
     (name "mbed-tools")
-    (version "7.49.1")
+    (version "7.53.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "mbed-tools" version))
        (sha256
         (base32
-         "07w1h1093xzpg8agw9hjhki5856mam2c6f3q7jb2866n82cihkg9"))))
+         "0gdmyxy97bqr9bmkg90v3axmrr2db734nwzq2l05z84x9qiarc9i"))))
     (arguments
      `(#:phases
        (modify-phases %standard-phases
+         (add-after 'unpack 'relax-requirements
+           (lambda _
+             (substitute* "setup.py"
+               (("\"Click>=7.1,<8\"")
+                "\"Click>=7.1\""))))
          (replace 'check
            (lambda* (#:key tests? #:allow-other-keys)
              (when tests?

Reply via email to