summary refs log tree commit diff
path: root/pkgs/development/python-modules/pylint
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-03-26 15:32:21 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-03-26 15:33:05 +0100
commita1a4ff747128ec73975a933c67ecec2e5169ff30 (patch)
treefc2ab8aa291e6fbd24e070b5a623155a7ad759cc /pkgs/development/python-modules/pylint
parent3e6f54a0bc79ad22734f5a2c7f55816c98e9d94f (diff)
downloadnixpkgs-a1a4ff747128ec73975a933c67ecec2e5169ff30.tar
nixpkgs-a1a4ff747128ec73975a933c67ecec2e5169ff30.tar.gz
nixpkgs-a1a4ff747128ec73975a933c67ecec2e5169ff30.tar.bz2
nixpkgs-a1a4ff747128ec73975a933c67ecec2e5169ff30.tar.lz
nixpkgs-a1a4ff747128ec73975a933c67ecec2e5169ff30.tar.xz
nixpkgs-a1a4ff747128ec73975a933c67ecec2e5169ff30.tar.zst
nixpkgs-a1a4ff747128ec73975a933c67ecec2e5169ff30.zip
python.pkgs.pylint: pytestrunner belongs in nativeBuildInputs
because it's in `setup_requires`. Noticed when building with `doCheck =
false;`.
Diffstat (limited to 'pkgs/development/python-modules/pylint')
-rw-r--r--pkgs/development/python-modules/pylint/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pylint/default.nix b/pkgs/development/python-modules/pylint/default.nix
index 67066c85f05..86730bc4330 100644
--- a/pkgs/development/python-modules/pylint/default.nix
+++ b/pkgs/development/python-modules/pylint/default.nix
@@ -12,7 +12,9 @@ buildPythonPackage rec {
     sha256 = "689de29ae747642ab230c6d37be2b969bf75663176658851f456619aacf27492";
   };
 
-  checkInputs = [ pytest pytestrunner pyenchant ];
+  nativeBuildInputs = [ pytestrunner ];
+
+  checkInputs = [ pytest pyenchant ];
 
   propagatedBuildInputs = [ astroid isort mccabe ];