summaryrefslogtreecommitdiff
path: root/gnu/packages/linux.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r--gnu/packages/linux.scm24
1 files changed, 12 insertions, 12 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 94a94a98d53..b84ceceb6a0 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -4856,20 +4856,20 @@ the command line or a script.")
4856 (file-name (git-file-name name version)) 4856 (file-name (git-file-name name version))
4857 (sha256 4857 (sha256
4858 (base32 "00h5p8fk1zi237q8mqds8apqbis9iw0yih1hl0pr63dsnyzmmrpw")))) 4858 (base32 "00h5p8fk1zi237q8mqds8apqbis9iw0yih1hl0pr63dsnyzmmrpw"))))
4859 (build-system python-build-system) 4859 (build-system pyproject-build-system)
4860 (arguments 4860 (arguments
4861 '(#:phases 4861 (list
4862 (modify-phases %standard-phases 4862 #:tests? #f ; No tests.
4863 (add-after 'unpack 'fix-build-with-python3 4863 #:phases
4864 (lambda _ 4864 #~(modify-phases %standard-phases
4865 (substitute* "setup.py" 4865 (add-after 'unpack 'fix-build-with-python3
4866 (("itervalues") "values"))))) 4866 (lambda _
4867 ;; There are currently no checks in the package. 4867 (substitute* "setup.py"
4868 #:tests? #f)) 4868 (("itervalues")
4869 (native-inputs (list python)) 4869 "values")))))))
4870 (native-inputs (list python python-setuptools))
4870 (home-page "http://guichaz.free.fr/iotop/") 4871 (home-page "http://guichaz.free.fr/iotop/")
4871 (synopsis 4872 (synopsis "Displays the IO activity of running processes")
4872 "Displays the IO activity of running processes")
4873 (description 4873 (description
4874 "Iotop is a Python program with a top like user interface to show the 4874 "Iotop is a Python program with a top like user interface to show the
4875processes currently causing I/O.") 4875processes currently causing I/O.")