aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-11-16 21:14:14 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:19:10 +0000
commit8d5f2d764711be09b23edaf7186e5c130bfa15c5 (patch)
tree485ef6194d6ed3f39066d00c5a111282e76a484d
parent8d5c2f02a294d25b9f83816c5a082d71a1b89850 (diff)
downloadguix-8d5f2d764711be09b23edaf7186e5c130bfa15c5.tar.gz
guix-8d5f2d764711be09b23edaf7186e5c130bfa15c5.zip
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
-rw-r--r--gnu/packages/python-xyz.scm14
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 299c660e02..9af5543036 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15559,22 +15559,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