diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 16:33:40 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 17:09:11 +0100 |
| commit | 8d5bbb3a6a31c094b9f0da988c6573acc2bb312c (patch) | |
| tree | 0fb1a3552417b0757a709aada0c00376e4274b04 /gnu/packages/python-xyz.scm | |
| parent | 1f20f40861c1ef9a7c5968a3a388f956f989f1fd (diff) | |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 27 |
1 files 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 |
