python.pkgs.pylint: pytestrunner belongs in nativeBuildInputs

because it's in `setup_requires`. Noticed when building with `doCheck =
false;`.
This commit is contained in:
Frederik Rietdijk 2019-03-26 15:32:21 +01:00
parent 3e6f54a0bc
commit a1a4ff7471

View File

@ -12,7 +12,9 @@ buildPythonPackage rec {
sha256 = "689de29ae747642ab230c6d37be2b969bf75663176658851f456619aacf27492";
};
checkInputs = [ pytest pytestrunner pyenchant ];
nativeBuildInputs = [ pytestrunner ];
checkInputs = [ pytest pyenchant ];
propagatedBuildInputs = [ astroid isort mccabe ];