python313Packages.jinja2: 3.1.5 -> 3.1.6

https://github.com/pallets/jinja/blob/3.1.6/CHANGES.rst

Fixes: CVE-2025-27516
This commit is contained in:
Martin Weinelt 2025-03-05 21:25:44 +01:00
parent 9cc0e35e29
commit d7836cdfe5
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -2,7 +2,6 @@
lib,
stdenv,
python,
pythonAtLeast,
buildPythonPackage,
pythonOlder,
fetchPypi,
@ -21,14 +20,14 @@
buildPythonPackage rec {
pname = "jinja2";
version = "3.1.5";
version = "3.1.6";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-j+//jcMDTie7gNZ8Zx64qbxCTA70wIJu2/8wTM7/Q7s=";
hash = "sha256-ATf7BZkNNfEnWlh+mu5tVtqCH8g0kaD7g4GDvkP2bW0=";
};
postPatch = ''