From 395591c09da35063b6936e22430eaf2a81e3a50b Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Wed, 29 Oct 2025 10:46:17 +0100 Subject: [PATCH] gnu: Remove python-iocapture. * gnu/packages/python-xyz.scm (python-iocapture): Delete variable. Fixes: guix/guix#3054 Change-Id: I501bef2a65aca45eb526c3eebde59dab4bac47b0 --- gnu/packages/python-xyz.scm | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4de31cb152d8e3aa95fe49c924c1a754bc069e42..e15e4969e8e4fd6c49f491b8896b2a463710ab30 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29494,37 +29494,6 @@ to and from JSON. Common data types are implemented and it is easy to register custom encoders and decoders.") (license license:expat))) -;; XXX: See: . -(define-public python-iocapture - ;; The latest release is more than a year older than this commit. - (let ((commit "fdc021c431d0840303908dfc3ca8769db383595c") - (revision "1")) - (package - (name "python-iocapture") - (version "0.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/oinume/iocapture") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mkbhqibxvgwg0p7slr8dfraa3g2s6bsayladhax2jccwj4kcndz")))) - (build-system pyproject-build-system) - (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 - "This package helps you to capture the standard out (stdout) and the -standard error channel (stderr) in your program.") - (license license:expat)))) - (define-public python-ioctl-opt (package (name "python-ioctl-opt")