Skip to content

Commit

Permalink
python312Packages.jinja2: 3.1.4 -> 3.1.5 (#367410)
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Dec 24, 2024
2 parents 078bce2 + 143eb2e commit 68c1f8e
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions pkgs/development/python-modules/jinja2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,29 @@

buildPythonPackage rec {
pname = "jinja2";
version = "3.1.4";
version = "3.1.5";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
hash = "sha256-Sjruesu+cwOu3o6WSNE7i/iKQpKCqmEiqZPwrIAMs2k=";
hash = "sha256-j+//jcMDTie7gNZ8Zx64qbxCTA70wIJu2/8wTM7/Q7s=";
};

nativeBuildInputs = [ flit-core ];
postPatch = ''
# Do not test with trio, it increases jinja2's dependency closure by a lot
# and everyone consuming these dependencies cannot rely on sphinxHook,
# because sphinx itself depends on jinja2.
substituteInPlace tests/test_async{,_filters}.py \
--replace-fail "import trio" "" \
--replace-fail ", trio.run" "" \
--replace-fail ", \"trio\"" ""
'';

propagatedBuildInputs = [ markupsafe ];
build-system = [ flit-core ];

dependencies = [ markupsafe ];

optional-dependencies = {
i18n = [ babel ];
Expand All @@ -45,14 +55,6 @@ buildPythonPackage rec {

nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.i18n;

disabledTests = lib.optionals (pythonAtLeast "3.13") [
# https://github.com/pallets/jinja/issues/1900
"test_custom_async_iteratable_filter"
"test_first"
"test_loop_errors"
"test_package_zip_list"
];

passthru.doc = stdenv.mkDerivation {
# Forge look and feel of multi-output derivation as best as we can.
#
Expand Down

0 comments on commit 68c1f8e

Please sign in to comment.