python3Packages.ftfy: Fix dependencies

`ftfy` depends on `setuptools`. This is not declared by `ftfy` directly,
but without it you'll get a `ModuleNotFoundError`.
This commit is contained in:
Lily Ballard 2020-04-06 17:47:07 -07:00 committed by Jon
parent 2687432f09
commit 71b1be3305

View file

@ -4,6 +4,7 @@
, fetchPypi
, html5lib
, wcwidth
, setuptools
, pytest
}:
@ -26,6 +27,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
html5lib
wcwidth
setuptools
];
checkInputs = [