diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-22 09:42:50 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 11:32:14 +0100 |
commit | d880228bd8e393f14b72c25dbe9109cff221a420 (patch) | |
tree | 50a3e9bb9f2c42f0239a74b6bfc1fe44b5771282 /gnu/packages/python-xyz.scm | |
parent | 9234b1fa02fadf5b937cfc5dc4cce4aa7a9f57df (diff) |
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files 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 |