1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-27 12:40:32 +02:00

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
This commit is contained in:
Sharlatan Hellseher
2025-10-05 16:33:40 +01:00
parent 1f20f40861
commit 8d5bbb3a6a

View File

@@ -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