guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 8d5bbb3a6a31c094b9f0da988c6573acc2bb312c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Oct 5 16:33:40 2025 +0100

    gnu: python-wasabi: Update to 1.1.3.
    
    * gnu/packages/python-xyz.scm (python-wasabi): Update to 1.1.3.
    [build-system]: Switch to pyproject-build-system.
    [arguments] <test-flags>: Deselect one tests requiring nbconvert to
    reduce closure size.
    [propagated-inputs]: Add python-colorama.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: Ia5b5e340a865cd03ccfc623a7bf4d820ed209dbf
---
 gnu/packages/python-xyz.scm | 27 ++++++++++++++++++---------
 1 file changed, 18 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 11f78c710e..e108a00563 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -38764,15 +38764,24 @@ for serialization, which has many drawbacks.")
 (define-public python-wasabi
   (package
     (name "python-wasabi")
-    (version "0.9.1")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "wasabi" version))
-              (sha256
-               (base32
-                "1kwqfalq7qxs9f7xb2m055g01qpbznyzxl7sjnzjdvvhkczg39md"))))
-    (build-system python-build-system)
-    (native-inputs (list python-pytest))
+    (version "1.1.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "wasabi" version))
+       (sha256
+        (base32 "0y085r7hym3x34a9jgxl5cd8gsh617rdmd187q6dn29q027h1csb"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:test-flags
+      ;; Test requires nbconvert which is huge.
+      #~(list "--deselect=wasabi/tests/test_jupyter.py::test_jupyter")))
+    (native-inputs
+     (list python-pytest
+           python-setuptools))
+    (propagated-inputs
+     (list python-colorama))
     (home-page "https://github.com/ines/wasabi";)
     (synopsis "Console printing and formatting toolkit")
     (description

Reply via email to