pythonPackages: deprecate pytestcov alias

This commit is contained in:
Sandro Jäckel
2021-07-20 22:42:24 +02:00
parent d863d4b43e
commit 4209fed914
143 changed files with 268 additions and 268 deletions

View File

@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchFromGitHub, flake8, pytest, pytestcov, pexpect }:
{ lib, buildPythonPackage, fetchFromGitHub, flake8, pytest, pytest-cov, pexpect }:
buildPythonPackage rec {
pname = "readchar";
@@ -13,7 +13,7 @@ buildPythonPackage rec {
};
nativeBuildInputs = [ flake8 ];
checkInputs = [ pytest pytestcov pexpect ];
checkInputs = [ pytest pytest-cov pexpect ];
meta = with lib; {
homepage = "https://github.com/magmax/python-readchar";