11 buildPythonPackage rec {
14 disabled = pythonOlder "3.5";
17 inherit pname version;
18 sha256 = "11qhs1jk9pwvyk5k3q5blh9sq42dh1ywdf1f3i2zixf7hncwir5h";
21 propagatedBuildInputs = [
31 # test failure reported upstream: https://github.com/adrienverge/yamllint/issues/373
32 "test_find_files_recursively"
33 ] ++ lib.optional stdenv.isDarwin [
34 # locale tests are broken on BSDs; see https://github.com/adrienverge/yamllint/issues/307
37 "test_run_with_locale"
40 pythonImportsCheck = [ "yamllint" ];
43 description = "A linter for YAML files";
44 homepage = "https://github.com/adrienverge/yamllint";
45 license = licenses.gpl3Plus;
46 maintainers = with maintainers; [ jonringer mikefaille ];