mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 01:20:40 +00:00
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:
parent
7531309c6e
commit
eb0d5fc3f0
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue