pythonPackages.natsort: fix tests

A coverage report is definitely not needed for Nixpkgs.

Changed files
+2 -6
pkgs
development
python-modules
natsort
+2 -6
pkgs/development/python-modules/natsort/default.nix
···
{ lib
, buildPythonPackage
, pythonOlder
-
, isPy35
-
, isPy36
, fetchPypi
, hypothesis
, pytestcache
-
, pytestcov
, pytestflakes
, pytestpep8
, pytest
···
pname = "natsort";
version = "5.2.0";
-
buildInputs = [
+
checkInputs = [
hypothesis
pytestcache
-
pytestcov
pytestflakes
pytestpep8
pytest
···
# testing based on project's tox.ini
checkPhase = ''
pytest --doctest-modules natsort
-
pytest --flakes --pep8 --cov natsort --cov-report term-missing
+
pytest --flakes --pep8
'';
meta = {