pythonPackages.flake8: 2.5.4 -> 2.6.2

This commit is contained in:
Alexander Ried 2016-10-01 20:07:14 +02:00
parent ad99006e47
commit aada610882

View File

@ -10539,15 +10539,15 @@ in modules // {
flake8 = buildPythonPackage rec {
name = "flake8-${version}";
version = "2.5.4";
version = "2.6.2";
src = pkgs.fetchurl {
url = "mirror://pypi/f/flake8/${name}.tar.gz";
sha256 = "0bs9cz4fr99r2rwig1b8jwaadl1nan7kgpdzqwj0bwbckwbmh7nc";
sha256 = "0y57hzal0j84dh9i1g1g6dc4aywvrnhy2fjmmbglpv5ajihxh713";
};
buildInputs = with self; [ nose mock ];
propagatedBuildInputs = with self; [ pyflakes pep8 mccabe ];
propagatedBuildInputs = with self; [ pyflakes pycodestyle mccabe ];
meta = {
description = "Code checking using pep8 and pyflakes";