python3Packages.pydocstyle: remove deprecated pep8 plugin

This commit is contained in:
Jonathan Ringer 2020-08-16 15:11:39 -07:00
parent 1d62f35d58
commit ebe30ae849
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -19,11 +19,11 @@ buildPythonPackage rec {
propagatedBuildInputs = [ snowballstemmer ];
checkInputs = [ pytest pytestpep8 mock ];
checkInputs = [ pytest mock ];
checkPhase = ''
# test_integration.py installs packages via pip
py.test --pep8 --cache-clear -vv src/tests -k "not test_integration"
py.test --cache-clear -vv src/tests -k "not test_integration"
'';
meta = with lib; {