python3Packages.validators: remove superfluous dependencies

This commit is contained in:
Robert Schütz 2021-12-02 19:17:55 -08:00 committed by Jonathan Ringer
parent 2100043ba9
commit 92123f61bd

View File

@ -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";