blob: 1f427196c9f84f13b2abd1567efd0c2cf08ac35e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pathspec,
pytestCheckHook,
pyyaml,
}:
buildPythonPackage rec {
pname = "yamllint";
version = "1.37.1";
pyproject = true;
src = fetchFromGitHub {
owner = "adrienverge";
repo = "yamllint";
tag = "v${version}";
hash = "sha256-CohqiBoQcgvGVP0Bt6U768BY1aIwh59YRsgzJfaDmP0=";
};
build-system = [ setuptools ];
dependencies = [
pyyaml
pathspec
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# test failure reported upstream: https://github.com/adrienverge/yamllint/issues/373
"test_find_files_recursively"
# Issue with fixture
"test_codec_built_in_equivalent"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# locale tests are broken on BSDs; see https://github.com/adrienverge/yamllint/issues/307
"test_locale_accents"
"test_locale_case"
"test_run_with_locale"
];
pythonImportsCheck = [ "yamllint" ];
meta = {
description = "Linter for YAML files";
homepage = "https://github.com/adrienverge/yamllint";
changelog = "https://github.com/adrienverge/yamllint/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ mikefaille ];
mainProgram = "yamllint";
};
}
|