~ruther/guix-local

ee27101aa34bfe70b9ae3c1c68c7c89a7b307c6e — Nicolas Graves 2 months ago 3e33a94
gnu: python-capturer: Update to 3.0.

* gnu/packages/python-xyz.scm (python-capturer): Update to 3.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools.

Change-Id: I0f44dcff9d7f77a8391a8841268e078f5dca0758
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 10 insertions(+), 10 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +10 -10
@@ 6205,19 6205,19 @@ can be used to:
(define-public python-capturer
  (package
    (name "python-capturer")
    (version "2.4")
    (version "3.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "capturer" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/xolox/python-capturer")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "05d6ji4j8ipiq0br7bwam38qc6hd9l1djmfxlzrxx19ziyjl4089"))))
    (build-system python-build-system)
    (arguments
     `(#:tests? #f))
    (propagated-inputs
     (list python-humanfriendly))
        (base32 "0fwrxa049gzin5dck7fvwhdp1856jrn0d7mcjcjsd7ndqvhgvjj1"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-pytest python-setuptools))
    (propagated-inputs (list python-humanfriendly))
    (home-page "https://capturer.readthedocs.io")
    (synopsis "Capture stdout and stderr streams of the current process")
    (description