gnu: iotop: Build with python3.

* gnu/packages/linux.scm (iotop)[native-inputs]: Remove python-2, add
python.
[arguments]: Add phase to fix python3 compatibility.
This commit is contained in:
Efraim Flashner 2019-11-29 00:21:05 +02:00
parent e00d5b6bbf
commit d79db39dec
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2160,11 +2160,16 @@ (define-public iotop
"1kp8mqg2pbxq4xzpianypadfxcsyfgwcaqgqia6h9fsq6zyh4z0s"))))
(build-system python-build-system)
(arguments
;; The setup.py script expects python-2.
`(#:python ,python-2
'(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-build-with-python3
(lambda _
(substitute* "setup.py"
(("itervalues") "values"))
#t)))
;; There are currently no checks in the package.
#:tests? #f))
(native-inputs `(("python" ,python-2)))
(native-inputs `(("python" ,python)))
(home-page "http://guichaz.free.fr/iotop/")
(synopsis
"Displays the IO activity of running processes")