about summary refs log tree commit diff
path: root/pkgs/development/python-modules/yamllint/default.nix
blob: 1d4672312a202da19e9e6e4c6b6c90b7b6b3f64a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, buildPythonPackage, fetchPypi
, nose, pyyaml }:

buildPythonPackage rec {
  pname = "yamllint";
  version = "0.5.2";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0brdy1crhfng10hlw0420bv10c2xnjk8ndnhssybkzym47yrzg84";
  };

  buildInputs = [ nose ];

  propagatedBuildInputs = [  pyyaml ];

  meta = with stdenv.lib; {
    description = "A linter for YAML files";
    homepage = https://github.com/adrienverge/yamllint;
    license = licenses.gpl3;
    maintainers = with maintainers; [ mikefaille ];
  };
}