nixpkgs/pkgs/development/python-modules/yamllint/default.nix

43 lines
849 B
Nix
Raw Normal View History

2021-03-10 09:09:35 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pathspec
, pytestCheckHook
, pythonOlder
, pyyaml
}:
buildPythonPackage rec {
pname = "yamllint";
version = "1.25.0";
2021-03-10 09:09:35 +00:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "b1549cbe5b47b6ba67bdeea31720f5c51431a4d0c076c1557952d841f7223519";
};
2021-03-10 09:09:35 +00:00
propagatedBuildInputs = [
pyyaml
pathspec
];
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" ];
meta = with lib; {
description = "A linter for YAML files";
homepage = "https://github.com/adrienverge/yamllint";
2021-03-10 09:09:35 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jonringer mikefaille ];
};
}