summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-27 22:56:53 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-27 22:56:58 +0100
commitc78545b3349f233177b7de6861d612c889b017c9 (patch)
treed9b67b7f4ccbaca57e8e589539b704f64fe9c44e /gnu/packages/python-xyz.scm
parentf35a36f906ab2f1d676225e0d0c9aea73b2759a1 (diff)
gnu: python-iocapture: Fix tests.
* gnu/packages/python-xyz.scm (python-iocapture)[native-inputs]: Remove python-wheel; add python-six. Change-Id: Ifa2191412463b03759527cd8073e6760d648c2f4
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm9
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8efb352799..ae5e5c270e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32158,6 +32158,7 @@ register custom encoders and decoders.")
bindings for Python 3.")
(license license:bsd-3)))
+;; XXX: See: <https://codeberg.org/guix/guix/issues/3054>.
(define-public python-iocapture
;; The latest release is more than a year older than this commit.
(let ((commit "fdc021c431d0840303908dfc3ca8769db383595c")
@@ -32175,8 +32176,12 @@ bindings for Python 3.")
(sha256
(base32 "1mkbhqibxvgwg0p7slr8dfraa3g2s6bsayladhax2jccwj4kcndz"))))
(build-system pyproject-build-system)
- (native-inputs (list python-flexmock python-pytest python-pytest-cov
- python-setuptools python-wheel))
+ (native-inputs
+ (list python-flexmock
+ python-pytest
+ python-pytest-cov
+ python-setuptools
+ python-six))
(home-page "https://github.com/oinume/iocapture")
(synopsis "Python capturing tool for stdout and stderr")
(description