2017-07-15 09:07:43 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-09-06 18:42:35 +02:00
|
|
|
, nose, pyyaml, pathspec }:
|
2017-07-15 09:07:43 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "yamllint";
|
2019-01-16 17:54:09 +01:00
|
|
|
version = "1.14.0";
|
2017-07-15 09:07:43 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-16 17:54:09 +01:00
|
|
|
sha256 = "0x9ansmhqvc3rj0nbhpl0jdqr5pk6qdxf7i6r4gr0hzqr50vdaf0";
|
2017-07-15 09:07:43 +02:00
|
|
|
};
|
|
|
|
|
2017-09-06 18:42:35 +02:00
|
|
|
checkInputs = [ nose ];
|
2017-07-15 09:07:43 +02:00
|
|
|
|
2017-09-06 18:42:35 +02:00
|
|
|
propagatedBuildInputs = [ pyyaml pathspec ];
|
|
|
|
|
|
|
|
# Two test failures
|
|
|
|
doCheck = false;
|
2017-07-15 09:07:43 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A linter for YAML files";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/adrienverge/yamllint;
|
2017-07-15 09:07:43 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ mikefaille ];
|
|
|
|
};
|
|
|
|
}
|