Python: Add missing setuptools dependency to branca

This commit is contained in:
Matthew Pickering 2019-12-26 17:03:24 +00:00
parent 1e00a97577
commit b9fafdc475

View File

@ -5,6 +5,7 @@
, jinja2 , jinja2
, selenium , selenium
, six , six
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -17,7 +18,7 @@ buildPythonPackage rec {
}; };
checkInputs = [ pytest selenium ]; checkInputs = [ pytest selenium ];
propagatedBuildInputs = [ jinja2 six ]; propagatedBuildInputs = [ jinja2 six setuptools ];
# Seems to require a browser # Seems to require a browser
doCheck = false; doCheck = false;