python2Packages.validators: disable url tests

This commit is contained in:
Jonathan Ringer 2020-06-12 13:31:50 -07:00
parent 38397dc9ea
commit be5804ac9e
1 changed files with 4 additions and 5 deletions

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, six
, decorator
, pytest
, pytestCheckHook
, isort
, flake8
}:
@ -23,14 +24,12 @@ buildPythonPackage rec {
];
checkInputs = [
pytest
pytestCheckHook
flake8
isort
];
checkPhase = ''
pytest
'';
disabledTests = lib.optionals isPy27 [ "url" ];
meta = with lib; {
description = "Python Data Validation for Humans";