about summary refs log tree commit diff
path: root/pkgs/development/python-modules/flake8
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-20 23:07:53 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-21 13:32:49 +0200
commit9bfdf57e139e7e3b253979da828285bb8284a217 (patch)
tree3e28797f722e0de7188f54f1d11ff7ef07db1cb4 /pkgs/development/python-modules/flake8
parent4209fed914e4362f952f4fa6d88c1808aa3df7b8 (diff)
pythonPackages: deprecate pytestrunner alias
Diffstat (limited to 'pkgs/development/python-modules/flake8')
-rw-r--r--pkgs/development/python-modules/flake8/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/flake8/default.nix b/pkgs/development/python-modules/flake8/default.nix
index b6f287669c580..0110db18c4c33 100644
--- a/pkgs/development/python-modules/flake8/default.nix
+++ b/pkgs/development/python-modules/flake8/default.nix
@@ -1,5 +1,5 @@
 { lib, buildPythonPackage, fetchPypi, pythonOlder
-, mock, pytest, pytestrunner
+, mock, pytest, pytest-runner
 , configparser, enum34, mccabe, pycodestyle, pyflakes, functools32, typing ? null, importlib-metadata
 }:
 
@@ -12,7 +12,7 @@ buildPythonPackage rec {
     sha256 = "07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b";
   };
 
-  checkInputs = [ pytest mock pytestrunner ];
+  checkInputs = [ pytest mock pytest-runner ];
   propagatedBuildInputs = [ pyflakes pycodestyle mccabe ]
     ++ lib.optionals (pythonOlder "3.2") [ configparser functools32 ]
     ++ lib.optionals (pythonOlder "3.4") [ enum34 ]