pythonPackages.branca: refactor fix broken python package

This commit is contained in:
Chris Ostrouchov 2018-12-02 08:21:13 -05:00 committed by Frederik Rietdijk
parent 9051a48dd2
commit 0107125d32

View File

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