From 71b1be330576e70f82cfdf3e48cc0b4b4d51628c Mon Sep 17 00:00:00 2001 From: Lily Ballard Date: Mon, 6 Apr 2020 17:47:07 -0700 Subject: [PATCH] python3Packages.ftfy: Fix dependencies `ftfy` depends on `setuptools`. This is not declared by `ftfy` directly, but without it you'll get a `ModuleNotFoundError`. --- pkgs/development/python-modules/ftfy/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/ftfy/default.nix b/pkgs/development/python-modules/ftfy/default.nix index 1b8b8c17846..7b633680b4c 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 = [