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 , fetchPypi
, html5lib , html5lib
, wcwidth , wcwidth
, setuptools
, pytest , pytest
}: }:
@ -26,6 +27,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
html5lib html5lib
wcwidth wcwidth
setuptools
]; ];
checkInputs = [ checkInputs = [