summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-12 22:10:40 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:40 +0100
commitdb5beb4036e3310880ceccb454c44491ebbc79b9 (patch)
tree0fb849a6bc46fb663b3e10fe712fadc38fc85850 /gnu/packages/python-xyz.scm
parent00dd33156c2556abe3906aba22cebe8a8e7654ac (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7134af0b68..9d698c3ec6 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3687,18 +3687,20 @@ access the technical and tag data for video and audio files.")
(define-public python-psutil
(package
(name "python-psutil")
- (version "5.9.2")
+ (version "7.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "psutil" version))
(sha256
- (base32 "0p1bf6ndcssqh0ic828ggwhzhm67mzj3ffq6043v0fvc1fhn3f7y"))))
- (build-system python-build-system)
+ (base32 "0mn42p9pzh0wynhk9i18iyvp8h54hbcsyczajmjcpv4blgmw7sbv"))))
+ (build-system pyproject-build-system)
(arguments
;; FIXME: some tests do not return and time out. Some tests fail because
;; some processes survive kill().
'(#:tests? #f))
+ (native-inputs
+ (list python-setuptools))
(home-page "https://github.com/giampaolo/psutil")
(synopsis "Library for retrieving information on running processes")
(description