Revert "pep8: replaced by pycodestyle (package was renamed)"
This reverts commit 0986a17eda
.
----
pycodestyle and pep8 are not api compatible so the alias adds little
value.
Packages that are compatible with pycodestyle should be updated to use
the new version on a per package basis.
This commit is contained in:
parent
d9c6879ae2
commit
e493c8406c
@ -10537,8 +10537,6 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
pep8 = self.pycodestyle;
|
||||
|
||||
flake8 = buildPythonPackage rec {
|
||||
name = "flake8-${version}";
|
||||
version = "3.0.4";
|
||||
@ -17601,6 +17599,23 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
pep8 = buildPythonPackage rec {
|
||||
name = "pep8-${version}";
|
||||
version = "1.7.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/pep8/${name}.tar.gz";
|
||||
sha256 = "a113d5f5ad7a7abacef9df5ec3f2af23a20a28005921577b15dd584d099d5900";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "http://pep8.readthedocs.org/";
|
||||
description = "Python style guide checker";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ garbas ];
|
||||
};
|
||||
};
|
||||
|
||||
pep257 = buildPythonPackage rec {
|
||||
name = "pep257-${version}";
|
||||
version = "0.3.2";
|
||||
|
Loading…
Reference in New Issue
Block a user