summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLily Ballard <lilyball@twitch.tv>2020-04-06 17:47:07 -0700
committerJon <jonringer@users.noreply.github.com>2020-04-06 21:11:06 -0700
commit71b1be330576e70f82cfdf3e48cc0b4b4d51628c (patch)
treeafc7ea454dceb7e9dfc4cf4f10f15c60d194e3b2
parentpython37Packages.pyhcl: 0.4.1 -> 0.4.2 (diff)
downloadnixpkgs-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`.
-rw-r--r--pkgs/development/python-modules/ftfy/default.nix2
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 = [