{ stdenv, buildPythonPackage, fetchPypi , nose, pyyaml, pathspec }: buildPythonPackage rec { pname = "yamllint"; version = "1.18.0"; src = fetchPypi { inherit pname version; sha256 = "076hqf189ww95n9vcbkkn8an42nx79cy8pf2qnl251yjncsvnbfl"; }; checkInputs = [ nose ]; propagatedBuildInputs = [ pyyaml pathspec ]; # Two test failures doCheck = false; meta = with stdenv.lib; { description = "A linter for YAML files"; homepage = https://github.com/adrienverge/yamllint; license = licenses.gpl3; maintainers = with maintainers; [ mikefaille ]; }; }