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
This commit is contained in:
Sharlatan Hellseher 2024-11-16 21:14:14 +00:00
parent 8d5c2f02a2
commit 8d5f2d7647
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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