1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-23 07:26:54 +00:00
nixpkgs/pkgs/development/python-modules/yamllint/default.nix
2017-08-25 19:36:14 +02:00

25 lines
578 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, nose, pyyaml }:
buildPythonPackage rec {
pname = "yamllint";
version = "1.8.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "048743567ca9511e19222233ebb53795586a2cede07b79e801577e0a9b4f173c";
};
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 ];
};
}