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 ];
};
}

View File

@ -29956,26 +29956,7 @@ EOF
};
};
yamllint = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "yamllint";
version = "0.5.2";
src = pkgs.fetchurl{
url = "mirror://pypi/y/${pname}/${name}.tar.gz";
sha256 = "0brdy1crhfng10hlw0420bv10c2xnjk8ndnhssybkzym47yrzg84";
};
buildInputs = with self; [ nose ];
propagatedBuildInputs = with self; [ pyyaml ];
meta = {
homepage = "https://github.com/adrienverge/yamllint";
description = "A linter for YAML files";
license = licenses.gpl3;
maintainers = with maintainers; [ mikefaille ];
};
};
yamllint = callPackage ../development/python-modules/yamllint { };
yarl = callPackage ../development/python-modules/yarl { };