sharlatan pushed a commit to branch python-team
in repository guix.
commit 065ed6a1f383857cdee9ba4d343af94d1dc84d7a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Nov 16 21:14:14 2024 +0000
gnu: python-ptyprocess: Update to 0.7.0.
* gnu/packages/python-xyz.scm (python-ptyprocess): Update to 0.7.0.
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Remove python-nose; add python-flit-core and
python-pytest.
Change-Id: I28682d1be282c650d9485d401e1a3291a85f472e
---
gnu/packages/python-xyz.scm | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c46b821d35..197bdae81f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15498,22 +15498,18 @@ functionalities with some extras.")
(define-public python-ptyprocess
(package
(name "python-ptyprocess")
- (version "0.5.2")
+ (version "0.7.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "ptyprocess" version))
(sha256
(base32
- "0ra31k10v3629xq0kdn8lwmfbi97anmk48r03yvh7mks0kq96hg6"))))
- (build-system python-build-system)
+ "081j893x6c9qrfszp8swfqlpvk8agh1jc32y9140pvnf90xhlpaw"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-nose))
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda _ (invoke "nosetests"))))))
+ (list python-flit-core
+ python-pytest))
(home-page "https://github.com/pexpect/ptyprocess")
(synopsis "Run a subprocess in a pseudo terminal")
(description