python3Packages.jinja2: ignore deprecation warnings

Will eventually be fixed by: https://github.com/python/cpython/pull/28153
on next cpython release

authored by

Jonathan Ringer and committed by
Martin Weinelt
47106848 139cadbf

+7
+7
pkgs/development/python-modules/jinja2/default.nix
··· 31 pytestCheckHook 32 ]; 33 34 meta = with lib; { 35 homepage = "http://jinja.pocoo.org/"; 36 description = "Stand-alone template engine";
··· 31 pytestCheckHook 32 ]; 33 34 + pytestFlagsArray = [ 35 + # Avoid failure due to deprecation warning 36 + # Fixed in https://github.com/python/cpython/pull/28153 37 + # Remove after cpython 3.9.8 38 + "-p no:warnings" 39 + ]; 40 + 41 meta = with lib; { 42 homepage = "http://jinja.pocoo.org/"; 43 description = "Stand-alone template engine";