diff --git a/pkgs/development/python-modules/branca/default.nix b/pkgs/development/python-modules/branca/default.nix index e3107bd25b9..c81233045c0 100644 --- a/pkgs/development/python-modules/branca/default.nix +++ b/pkgs/development/python-modules/branca/default.nix @@ -4,6 +4,7 @@ , pytest , jinja2 , selenium +, six }: buildPythonPackage rec { @@ -16,7 +17,7 @@ buildPythonPackage rec { }; checkInputs = [ pytest selenium ]; - propagatedBuildInputs = [ jinja2 ]; + propagatedBuildInputs = [ jinja2 six ]; # Seems to require a browser doCheck = false;