about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2017-05-29 02:07:53 +0100
committerRobert Scott <code@humanleg.org.uk>2017-05-29 02:10:43 +0100
commit21e3b2ff551c8dbf16a010fc377c5f60283034e4 (patch)
treec2abc406e38664f04a08e99d48e55fa3e317b107 /pkgs/development/python-modules
parentd2ef1a24b86c1ff69c218c8d83b48af0977ca3af (diff)
downloadnixlib-21e3b2ff551c8dbf16a010fc377c5f60283034e4.tar
nixlib-21e3b2ff551c8dbf16a010fc377c5f60283034e4.tar.gz
nixlib-21e3b2ff551c8dbf16a010fc377c5f60283034e4.tar.bz2
nixlib-21e3b2ff551c8dbf16a010fc377c5f60283034e4.tar.lz
nixlib-21e3b2ff551c8dbf16a010fc377c5f60283034e4.tar.xz
nixlib-21e3b2ff551c8dbf16a010fc377c5f60283034e4.tar.zst
nixlib-21e3b2ff551c8dbf16a010fc377c5f60283034e4.zip
python.pkgs.pylint: add pytestrunner to buildInputs
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pylint/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pylint/default.nix b/pkgs/development/python-modules/pylint/default.nix
index 2922faafa7f7..130aef60f971 100644
--- a/pkgs/development/python-modules/pylint/default.nix
+++ b/pkgs/development/python-modules/pylint/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, buildPythonPackage, python, astroid, isort,
-  pytest,  mccabe, configparser, backports_functools_lru_cache }:
+  pytest, pytestrunner,  mccabe, configparser, backports_functools_lru_cache }:
 
   buildPythonPackage rec {
     name = "${pname}-${version}";
@@ -11,7 +11,7 @@
       sha256 = "8b4a7ab6cf5062e40e2763c0b4a596020abada1d7304e369578b522e46a6264a";
     };
 
-    buildInputs = [ pytest mccabe configparser backports_functools_lru_cache ];
+    buildInputs = [ pytest pytestrunner mccabe configparser backports_functools_lru_cache ];
 
     propagatedBuildInputs = [ astroid isort ];