2021-03-10 09:09:35 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pathspec
|
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
, pyyaml
|
|
|
|
}:
|
2017-07-15 08:07:43 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "yamllint";
|
2020-10-17 05:46:53 +01:00
|
|
|
version = "1.25.0";
|
2021-03-10 09:09:35 +00:00
|
|
|
disabled = pythonOlder "3.5";
|
2017-07-15 08:07:43 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-17 05:46:53 +01:00
|
|
|
sha256 = "b1549cbe5b47b6ba67bdeea31720f5c51431a4d0c076c1557952d841f7223519";
|
2017-07-15 08:07:43 +01:00
|
|
|
};
|
|
|
|
|
2021-03-10 09:09:35 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
pyyaml
|
|
|
|
pathspec
|
|
|
|
];
|
2017-07-15 08:07:43 +01:00
|
|
|
|
2021-03-10 09:09:35 +00:00
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
2017-09-06 17:42:35 +01:00
|
|
|
|
2021-03-10 09:09:35 +00:00
|
|
|
disabledTests = [
|
|
|
|
# Test failure could be related to https://github.com/adrienverge/yamllint/issues/334
|
|
|
|
"test_find_files_recursively"
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "yamllint" ];
|
2017-07-15 08:07:43 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-15 08:07:43 +01:00
|
|
|
description = "A linter for YAML files";
|
2020-04-07 11:45:49 +01:00
|
|
|
homepage = "https://github.com/adrienverge/yamllint";
|
2021-03-10 09:09:35 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2020-07-13 18:49:32 +01:00
|
|
|
maintainers = with maintainers; [ jonringer mikefaille ];
|
2017-07-15 08:07:43 +01:00
|
|
|
};
|
|
|
|
}
|