From a1a4ff747128ec73975a933c67ecec2e5169ff30 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 26 Mar 2019 15:32:21 +0100 Subject: [PATCH] python.pkgs.pylint: pytestrunner belongs in nativeBuildInputs because it's in `setup_requires`. Noticed when building with `doCheck = false;`. --- pkgs/development/python-modules/pylint/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pylint/default.nix b/pkgs/development/python-modules/pylint/default.nix index 67066c85f052..86730bc43306 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 ];