2017-07-15 07:07:43 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-09-06 16:42:35 +00:00
|
|
|
, nose, pyyaml, pathspec }:
|
2017-07-15 07:07:43 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "yamllint";
|
2020-10-17 04:46:53 +00:00
|
|
|
version = "1.25.0";
|
2017-07-15 07:07:43 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-17 04:46:53 +00:00
|
|
|
sha256 = "b1549cbe5b47b6ba67bdeea31720f5c51431a4d0c076c1557952d841f7223519";
|
2017-07-15 07:07:43 +00:00
|
|
|
};
|
|
|
|
|
2017-09-06 16:42:35 +00:00
|
|
|
checkInputs = [ nose ];
|
2017-07-15 07:07:43 +00:00
|
|
|
|
2017-09-06 16:42:35 +00:00
|
|
|
propagatedBuildInputs = [ pyyaml pathspec ];
|
|
|
|
|
|
|
|
# Two test failures
|
|
|
|
doCheck = false;
|
2017-07-15 07:07:43 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A linter for YAML files";
|
2020-04-07 10:45:49 +00:00
|
|
|
homepage = "https://github.com/adrienverge/yamllint";
|
2017-07-15 07:07:43 +00:00
|
|
|
license = licenses.gpl3;
|
2020-07-13 17:49:32 +00:00
|
|
|
maintainers = with maintainers; [ jonringer mikefaille ];
|
2017-07-15 07:07:43 +00:00
|
|
|
};
|
|
|
|
}
|