python3Packages.jinja2: fix dependencies
This commit is contained in:
parent
f6884981bc
commit
deced30f9a
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue