python.pkgs.natsort: no pyflakes and pep8 checks

This commit is contained in:
Robert Schütz 2018-08-30 22:29:31 +02:00 committed by Frederik Rietdijk
parent 0b3f257e06
commit de151625f2

View File

@ -4,8 +4,6 @@
, fetchPypi , fetchPypi
, hypothesis , hypothesis
, pytestcache , pytestcache
, pytestflakes
, pytestpep8
, pytest , pytest
, glibcLocales , glibcLocales
, mock ? null , mock ? null
@ -19,8 +17,6 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
hypothesis hypothesis
pytestcache pytestcache
pytestflakes
pytestpep8
pytest pytest
glibcLocales glibcLocales
] ]
@ -37,7 +33,7 @@ buildPythonPackage rec {
# testing based on project's tox.ini # testing based on project's tox.ini
checkPhase = '' checkPhase = ''
pytest --doctest-modules natsort pytest --doctest-modules natsort
pytest --flakes --pep8 pytest
''; '';
meta = { meta = {