pylint: remove pyenchant dependency

pyenchant is broken on macOS and also no longer actively developed.
pylint has made this an optional dependency that is no longer part of the
default test suite.

See this issue for more discussion:

https://github.com/PyCQA/pylint/issues/1900
This commit is contained in:
Matthew Bauer 2019-04-27 19:28:20 -04:00
parent 7531309c6e
commit eb0d5fc3f0

View file

@ -1,5 +1,5 @@
{ stdenv, lib, buildPythonPackage, fetchPypi, python, pythonOlder, astroid,
isort, mccabe, pytest, pytestrunner, pyenchant }:
isort, mccabe, pytest, pytestrunner }:
buildPythonPackage rec {
pname = "pylint";
@ -14,7 +14,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ pytestrunner ];
checkInputs = [ pytest pyenchant ];
checkInputs = [ pytest ];
propagatedBuildInputs = [ astroid isort mccabe ];