Skip to content

Commit

Permalink
python27Packages.pytestpep8: remove due to pytest v6 incompatibility
Browse files Browse the repository at this point in the history
Remove ``pythonPackages.pytestpep8`` because:
* It has been abandoned upstream: no PyPi release since 2014
* It is no longer compatible with pytest v6+: I get an error pointing to
  https://docs.pytest.org/en/stable/deprecations.html#node-construction-changed-to-node-from-parent
  when I try to use it with ``pytestCheckHook`` (i.e. pytest v6.0+)
* It doesn't have a maintainer
  • Loading branch information
drewrisinger committed Dec 10, 2020
1 parent 1183f62 commit 25c9946
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 29 deletions.
28 changes: 0 additions & 28 deletions pkgs/development/python-modules/pytest-pep8/default.nix

This file was deleted.

2 changes: 1 addition & 1 deletion pkgs/top-level/python-packages.nix
Expand Up @@ -5803,7 +5803,7 @@ in {

pytest-pep257 = callPackage ../development/python-modules/pytest-pep257 { };

pytestpep8 = callPackage ../development/python-modules/pytest-pep8 { };
pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10

pytest-pylint = callPackage ../development/python-modules/pytest-pylint { };

Expand Down

0 comments on commit 25c9946

Please sign in to comment.