~ruther/guix-local

8d5bbb3a6a31c094b9f0da988c6573acc2bb312c — Sharlatan Hellseher 7 months ago 1f20f40
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
1 files changed, 18 insertions(+), 9 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +18 -9
@@ 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