gnu: python-psutil: Update to 7.0.0.

* gnu/packages/python-xyz.scm (python-psutil): Update to 7.0.0.
  [build-system]: Use pyproject.
  [native-inputs]: Add python-setuptools.

Change-Id: If14a03a99a4b219af6ecb7bbad176a6757cb81b4
This commit is contained in:
Sharlatan Hellseher 2025-07-12 22:10:40 +01:00
parent e1c40881dc
commit d4a94e8c60
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3687,18 +3687,20 @@ access the technical and tag data for video and audio files.")
(define-public python-psutil (define-public python-psutil
(package (package
(name "python-psutil") (name "python-psutil")
(version "5.9.2") (version "7.0.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "psutil" version)) (uri (pypi-uri "psutil" version))
(sha256 (sha256
(base32 "0p1bf6ndcssqh0ic828ggwhzhm67mzj3ffq6043v0fvc1fhn3f7y")))) (base32 "0mn42p9pzh0wynhk9i18iyvp8h54hbcsyczajmjcpv4blgmw7sbv"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments (arguments
;; FIXME: some tests do not return and time out. Some tests fail because ;; FIXME: some tests do not return and time out. Some tests fail because
;; some processes survive kill(). ;; some processes survive kill().
'(#:tests? #f)) '(#:tests? #f))
(native-inputs
(list python-setuptools))
(home-page "https://github.com/giampaolo/psutil") (home-page "https://github.com/giampaolo/psutil")
(synopsis "Library for retrieving information on running processes") (synopsis "Library for retrieving information on running processes")
(description (description