diff options
| author | Lily Ballard <lilyball@twitch.tv> | 2020-04-06 17:47:07 -0700 |
|---|---|---|
| committer | Jon <jonringer@users.noreply.github.com> | 2020-04-06 21:11:06 -0700 |
| commit | 71b1be330576e70f82cfdf3e48cc0b4b4d51628c (patch) | |
| tree | afc7ea454dceb7e9dfc4cf4f10f15c60d194e3b2 /pkgs/development/python-modules/ftfy/default.nix | |
| parent | python37Packages.pyhcl: 0.4.1 -> 0.4.2 (diff) | |
| download | nixpkgs-71b1be330576e70f82cfdf3e48cc0b4b4d51628c.tar.gz | |
python3Packages.ftfy: Fix dependencies
`ftfy` depends on `setuptools`. This is not declared by `ftfy` directly,
but without it you'll get a `ModuleNotFoundError`.
Diffstat (limited to 'pkgs/development/python-modules/ftfy/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/ftfy/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ftfy/default.nix b/pkgs/development/python-modules/ftfy/default.nix index 1b8b8c17846d..7b633680b4ce 100644 --- a/pkgs/development/python-modules/ftfy/default.nix +++ b/pkgs/development/python-modules/ftfy/default.nix @@ -4,6 +4,7 @@ , fetchPypi , html5lib , wcwidth +, setuptools , pytest }: @@ -26,6 +27,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ html5lib wcwidth + setuptools ]; checkInputs = [ |
