python3Packages.jinja2: fix dependencies

This commit is contained in:
Gauvain 'GovanifY' Roussel-Tarbouriech 2020-08-26 17:52:51 +02:00 committed by Jon
parent f6884981bc
commit deced30f9a

View file

@ -3,7 +3,9 @@
, isPy3k
, fetchPypi
, pytest
, markupsafe }:
, markupsafe
, setuptools
}:
buildPythonPackage rec {
pname = "Jinja2";
@ -15,7 +17,7 @@ buildPythonPackage rec {
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ markupsafe ];
propagatedBuildInputs = [ markupsafe setuptools ];
# Multiple tests run out of stack space on 32bit systems with python2.
# See https://github.com/pallets/jinja/issues/1158