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