diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-13 16:38:15 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-13 16:38:15 +0100 |
commit | bea2914b3d1b06cc8cc1d9cff88c0dd7d8ebb1be (patch) | |
tree | ecc354a094d8b4a1a5fd6d6ed005d22f05e9089e | |
parent | d0268d5b7ff4c5bac0ac2e25bc371ba5c950d12a (diff) |
guix: Do not warn about python-setuptools.
Reported by Jonas Freimuth.
* guix/lint.scm (check-inputs-should-not-be-an-input-at-all): Remove
python-setuptools.
Change-Id: Ic230fd5c00f2a5e07fea430bce6e3cf9d9c8950c
-rw-r--r-- | guix/lint.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/lint.scm b/guix/lint.scm index 59607fbfdd..46b2e99241 100644 --- a/guix/lint.scm +++ b/guix/lint.scm @@ -15,6 +15,7 @@ ;;; Copyright © 2021-2023 Maxime Devos <maximedevos@telenet.be> ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re> ;;; Copyright © 2024 Gabriel Wicki <gabriel@erlikon.ch> +;;; Copyright © 2025 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -610,8 +611,7 @@ of a package, and INPUT-NAMES, a list of package specifications such as (define (check-inputs-should-not-be-an-input-at-all package) ;; Emit a warning if some inputs of PACKAGE are likely to should not be ;; an input at all. - (let ((input-names '("python-setuptools" - "python-pip" + (let ((input-names '("python-pip" "python-pre-commit"))) (map (lambda (input) (make-warning |