mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 13:36:36 +01:00
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
This commit is contained in:
parent
d0268d5b7f
commit
bea2914b3d
1 changed files with 2 additions and 2 deletions
|
@ -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 @@ (define (check-inputs-should-be-native package)
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue