Merge pull request #76543 from mpickering/wip/branca

Python: Add missing setuptools dependency to branca
This commit is contained in:
Maximilian Bosch 2019-12-26 19:01:14 +01:00 committed by GitHub
commit 70564f31b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;