pythonPackages: deprecate pytestcov alias

This commit is contained in:
Sandro Jäckel
2021-07-21 13:32:17 +02:00
parent d863d4b43e
commit 4209fed914
143 changed files with 268 additions and 268 deletions
@@ -1,6 +1,6 @@
{ lib, buildPythonPackage, isPy27, fetchPypi
, jsonschema, openapi-schema-validator, pyyaml, six, pathlib
, mock, pytest, pytestcov, pytest-flake8, tox, setuptools }:
, mock, pytest, pytest-cov, pytest-flake8, tox, setuptools }:
buildPythonPackage rec {
pname = "openapi-spec-validator";
@@ -14,7 +14,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ jsonschema openapi-schema-validator pyyaml six setuptools ]
++ (lib.optionals (isPy27) [ pathlib ]);
checkInputs = [ mock pytest pytestcov pytest-flake8 tox ];
checkInputs = [ mock pytest pytest-cov pytest-flake8 tox ];
meta = with lib; {
homepage = "https://github.com/p1c2u/openapi-spec-validator";