diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-28 21:26:36 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-31 17:11:48 +0000 |
| commit | 17968ec046b326c8acf547ce1ce6bde43a85037f (patch) | |
| tree | 3fb96e55edcababfa9226051878cae3d85027446 | |
| parent | 9b1fe6120f75ade554963c387bf736c5ebeed4ae (diff) | |
gnu: iotop-python: Switch to pyproject.
* gnu/packages/linux.scm (iotop-python):
[build-system]: Switch to pyproject-build-system.
[arguments, synopsis]: Improve style.
[native-inputs]: Add python-setuptools.
Change-Id: I25f67828dec27a4965f14c78dfc8f42a0b3cff0b
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/linux.scm | 24 |
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 |
| 4875 | processes currently causing I/O.") | 4875 | processes currently causing I/O.") |
