mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
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
|
, isPy3k
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pytest
|
, pytest
|
||||||
, markupsafe }:
|
, markupsafe
|
||||||
|
, setuptools
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "Jinja2";
|
pname = "Jinja2";
|
||||||
|
@ -15,7 +17,7 @@ buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytest ];
|
||||||
propagatedBuildInputs = [ markupsafe ];
|
propagatedBuildInputs = [ markupsafe setuptools ];
|
||||||
|
|
||||||
# Multiple tests run out of stack space on 32bit systems with python2.
|
# Multiple tests run out of stack space on 32bit systems with python2.
|
||||||
# See https://github.com/pallets/jinja/issues/1158
|
# See https://github.com/pallets/jinja/issues/1158
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue