Skip to content

Commit

Permalink
python3Packages.jinja2: ignore deprecation warnings
Browse files Browse the repository at this point in the history
Will eventually be fixed by: python/cpython#28153
on next cpython release
  • Loading branch information
jonringer committed Sep 13, 2021
1 parent 223d804 commit f61f863
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/development/python-modules/jinja2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ buildPythonPackage rec {
pytestCheckHook
];

pytestFlagsArray = [
# avoid failure due to deprecation warning
# see https://github.com/aio-libs/aiomysql/issues/505 for example
"-p no:warnings"
];

meta = with lib; {
homepage = "http://jinja.pocoo.org/";
description = "Stand-alone template engine";
Expand Down

0 comments on commit f61f863

Please sign in to comment.