pythonPackages.flake8: 2.6.2 -> 3.2.1
This commit is contained in:
parent
eb559d2b07
commit
6486b90820
@ -11074,15 +11074,17 @@ in {
|
|||||||
|
|
||||||
flake8 = buildPythonPackage rec {
|
flake8 = buildPythonPackage rec {
|
||||||
name = "flake8-${version}";
|
name = "flake8-${version}";
|
||||||
version = "2.6.2";
|
version = "3.2.1";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "mirror://pypi/f/flake8/${name}.tar.gz";
|
url = "mirror://pypi/f/flake8/${name}.tar.gz";
|
||||||
sha256 = "0y57hzal0j84dh9i1g1g6dc4aywvrnhy2fjmmbglpv5ajihxh713";
|
sha256 = "c7c460b5aff3a2063c798a77af18ec70af3941d35a22e2e76965e3c0e0b36055";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [ nose mock ];
|
buildInputs = with self; [ pytest mock pytestrunner ];
|
||||||
propagatedBuildInputs = with self; [ pyflakes pycodestyle mccabe ];
|
propagatedBuildInputs = with self; [ pyflakes pycodestyle mccabe ]
|
||||||
|
++ optionals (pythonOlder "3.4") [ enum34 ]
|
||||||
|
++ optionals (pythonOlder "3.2") [ configparser ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Code checking using pep8 and pyflakes";
|
description = "Code checking using pep8 and pyflakes";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user