Archived
1
0
Fork 0

gnu: python-psutil: Update to 5.8.0.

* gnu/packages/python-xyz.scm (python-psutil): Update to 5.8.0.
[home-page]: Update.
[description]: Please lint and re-flow text.
This commit is contained in:
Maxim Cournoyer 2021-02-18 23:15:58 -05:00
parent 5363d3751b
commit a386d29c18
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -550,28 +550,28 @@ data for video and audio files.")
(define-public python-psutil (define-public python-psutil
(package (package
(name "python-psutil") (name "python-psutil")
(version "5.7.2") (version "5.8.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "psutil" version)) (uri (pypi-uri "psutil" version))
(sha256 (sha256
(base32 "1svv985vmqsls35kmvp3vhh26nsgz229324s9k29awf6qgqhm6ch")))) (base32 "1immnj532bnnrh1qmk5q3lsw3san8qfk9kxy1cpmy0knmfcwp70c"))))
(build-system python-build-system) (build-system python-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))
(home-page "https://www.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
"psutil (Python system and process utilities) is a library for retrieving "@code{psutil} (Python system and process utilities) is a library for
information on running processes and system utilization (CPU, memory, disks, retrieving information on running processes and system utilization (CPU,
network) in Python. It is useful mainly for system monitoring, profiling and memory, disks, network) in Python. It is useful mainly for system monitoring,
limiting process resources and management of running processes. It implements profiling and limiting process resources and management of running processes.
many functionalities offered by command line tools such as: ps, top, lsof, It implements many functionalities offered by command line tools such as: ps,
netstat, ifconfig, who, df, kill, free, nice, ionice, iostat, iotop, uptime, top, lsof, netstat, ifconfig, who, df, kill, free, nice, ionice, iostat,
pidof, tty, taskset, pmap.") iotop, uptime, pidof, tty, taskset, pmap.")
(properties `((python2-variant . ,(delay python2-psutil)))) (properties `((python2-variant . ,(delay python2-psutil))))
(license license:bsd-3))) (license license:bsd-3)))