python3Packages.validators: remove superfluous dependencies

This commit is contained in:
Robert Schütz
2021-12-03 00:08:45 -08:00
committed by Jonathan Ringer
parent 2100043ba9
commit 92123f61bd
@@ -2,11 +2,8 @@
, buildPythonPackage
, fetchPypi
, isPy27
, six
, decorator
, pytestCheckHook
, isort
, flake8
}:
buildPythonPackage rec {
@@ -20,18 +17,13 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
six
decorator
];
checkInputs = [
pytestCheckHook
flake8
isort
];
disabledTests = lib.optionals isPy27 [ "url" ];
meta = with lib; {
description = "Python Data Validation for Humans";
homepage = "https://github.com/kvesteri/validators";