mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
python3Packages.validators: remove superfluous dependencies
This commit is contained in:
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";
|
||||
|
Loading…
Reference in New Issue
Block a user