3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/yamllint/default.nix

27 lines
608 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
2017-09-06 17:42:35 +01:00
, nose, pyyaml, pathspec }:
buildPythonPackage rec {
pname = "yamllint";
2019-02-14 07:37:33 +00:00
version = "1.15.0";
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:33 +00:00
sha256 = "8f25759997acb42e52b96bf3af0b4b942e6516b51198bebd3402640102006af7";
};
2017-09-06 17:42:35 +01:00
checkInputs = [ nose ];
2017-09-06 17:42:35 +01: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 ];
};
}