guix_mirror_bot pushed a commit to branch master
in repository guix.
commit d880228bd8e393f14b72c25dbe9109cff221a420
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Jul 22 09:42:50 2025 +0200
gnu: python-iocapture: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-iocapture):
[build-system]: Switch to pyproject-build-system.
[arguments]: Remove them, now unecessary.
[propagated-inputs]: Remove python-six. Move the rest to...
[native-inputs]:...here. Also add python-setuptools, python-wheel.
Change-Id: Ic81f6489c28a4296891695ec9cc496921f3500d2
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 18 ++++--------------
1 file changed, 4 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d4dafe13a7..106d50cb6c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -31801,20 +31801,10 @@ bindings for Python 3.")
(commit commit)))
(file-name (git-file-name name version))
(sha256
- (base32
- "1mkbhqibxvgwg0p7slr8dfraa3g2s6bsayladhax2jccwj4kcndz"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (delete 'check)
- (add-after 'install 'check
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (add-installed-pythonpath inputs outputs)
- (invoke "py.test" "-v" "tests")
- #t)))))
- (propagated-inputs
- (list python-flexmock python-pytest python-pytest-cov python-six))
+ (base32 "1mkbhqibxvgwg0p7slr8dfraa3g2s6bsayladhax2jccwj4kcndz"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-flexmock python-pytest python-pytest-cov
+ python-setuptools python-wheel))
(home-page "https://github.com/oinume/iocapture")
(synopsis "Python capturing tool for stdout and stderr")
(description