diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-10-06 16:52:31 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-15 17:37:50 +0100 |
commit | e442246a2f5f73b2484adb340b53d3a0018636b1 (patch) | |
tree | 491e55bc95f21ad8dd1196af7853b1ebdcbb16fd | |
parent | 891a843d5184f696618af6fcbb9791ef6b574504 (diff) | |
download | guix-e442246a2f5f73b2484adb340b53d3a0018636b1.tar guix-e442246a2f5f73b2484adb340b53d3a0018636b1.tar.gz |
lint: more packages to probably be a native input.
* guix/scripts/lint.scm (check-inputs-should-be-native package): Add python
packages which are typically used for testing or for building the
documentation.
-rw-r--r-- | guix/scripts/lint.scm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm index e68ee29e07..be29e36ce1 100644 --- a/guix/scripts/lint.scm +++ b/guix/scripts/lint.scm @@ -260,7 +260,17 @@ by two spaces; possible infraction~p at ~{~a~^, ~}") "glib:bin" "intltool" "itstool" - "qttools"))) + "qttools" + "python-coverage" "python2-coverage" + "python-cython" "python2-cython" + "python-docutils" "python2-docutils" + "python-mock" "python2-mock" + "python-nose" "python2-nose" + "python-pbr" "python2-pbr" + "python-pytest" "python2-pytest" + "python-pytest-cov" "python2-pytest-cov" + "python-setuptools-scm" "python2-setuptools-scm" + "python-sphinx" "python2-sphinx"))) (warn-if-package-has-input package inputs input-names message))) (define (check-inputs-should-not-be-an-input-at-all package) |