From 9ffcb7696f894a794fd36fcc5e0479833e226fa3 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 22 May 2024 00:45:28 +0200 Subject: [PATCH] python311Packages.django_3: communicate end of life Django 3 was supported until 2024-04-01, and we're taking it into NixOS 24.05 under the condition of people having to opt into its consumption. Related: #262907 --- pkgs/development/python-modules/django/3.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/django/3.nix b/pkgs/development/python-modules/django/3.nix index af4f123ee01e..decfbfd6f096 100644 --- a/pkgs/development/python-modules/django/3.nix +++ b/pkgs/development/python-modules/django/3.nix @@ -54,5 +54,8 @@ buildPythonPackage rec { homepage = "https://www.djangoproject.com/"; license = licenses.bsd3; maintainers = with maintainers; [ georgewhewell ]; + knownVulnerabilities = [ + "Support for Django 3.2 ended on 2024-04-01, see https://www.djangoproject.com/download/#supported-versions." + ]; }; }