python.pkgs.yamllint: move to separate expression

This commit is contained in:
wisut hantanong
2017-07-15 14:07:43 +07:00
committed by Jörg Thalheim
parent 33bcafcf5b
commit 911655fe5f
2 changed files with 25 additions and 20 deletions

View File

@@ -0,0 +1,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 ];
};
}