about summary refs log tree commit diff
path: root/pkgs/development/python-modules/inquirer
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-20 22:42:24 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-21 13:32:17 +0200
commit4209fed914e4362f952f4fa6d88c1808aa3df7b8 (patch)
tree88c440c22bb89fccf4b06e2b8696c6a6ef3a9932 /pkgs/development/python-modules/inquirer
parentd863d4b43ee7f4fabadf76a721c57abc54752067 (diff)
pythonPackages: deprecate pytestcov alias
Diffstat (limited to 'pkgs/development/python-modules/inquirer')
-rw-r--r--pkgs/development/python-modules/inquirer/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/inquirer/default.nix b/pkgs/development/python-modules/inquirer/default.nix
index e55fd8f39d558..84e381f0b8c88 100644
--- a/pkgs/development/python-modules/inquirer/default.nix
+++ b/pkgs/development/python-modules/inquirer/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, fetchFromGitHub, python-editor, readchar, blessed, pytest, pytestcov, pexpect, pytest-mock }:
+{ lib, buildPythonPackage, fetchFromGitHub, python-editor, readchar, blessed, pytest, pytest-cov, pexpect, pytest-mock }:
 
 buildPythonPackage rec {
   pname = "inquirer";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
      --replace "readchar==2.0.1" "readchar>=2.0.0"
   '';
 
-  checkInputs = [ pytest pytestcov pexpect pytest-mock ];
+  checkInputs = [ pytest pytest-cov pexpect pytest-mock ];
 
   checkPhase = ''
     pytest --cov-report=term-missing  --cov inquirer --no-cov-on-fail tests/unit tests/integration