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

27 lines
608 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
2017-09-06 16:42:35 +00:00
, nose, pyyaml, pathspec }:
buildPythonPackage rec {
pname = "yamllint";
2018-07-22 10:24:33 +00:00
version = "1.11.1";
src = fetchPypi {
inherit pname version;
2018-07-22 10:24:33 +00:00
sha256 = "e9b7dec24921ef13180902e5dbcaae9157c773e3e3e2780ef77d3a4dd67d799f";
};
2017-09-06 16:42:35 +00:00
checkInputs = [ nose ];
2017-09-06 16:42:35 +00:00
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 ];
};
}