treewide: replace django_5_2 with django_5 (#481441)

This commit is contained in:
Martin Weinelt
2026-01-18 23:36:51 +00:00
committed by GitHub
13 changed files with 12 additions and 13 deletions
+1 -1
View File
@@ -206,7 +206,7 @@ let
self = python;
packageOverrides = final: prev: {
# https://github.com/goauthentik/authentik/pull/16324
django = final.django_5_2;
django = final.django_5;
django-channels-postgres = final.buildPythonPackage {
pname = "django-channels-postgres";
+1 -1
View File
@@ -13,7 +13,7 @@ let
python = python313.override {
self = python;
packageOverrides = final: prev: {
django = final.django_5_2;
django = final.django_5;
django-csp = prev.django-csp.overridePythonAttrs rec {
version = "4.0";
src = fetchPypi {
+1 -1
View File
@@ -13,7 +13,7 @@ let
python = python3.override {
self = python3;
packageOverrides = self: super: {
django = super.django_5_2;
django = super.django_5;
};
};
+1 -1
View File
@@ -7,7 +7,7 @@
let
python = python3.override {
self = python3;
packageOverrides = (self: super: { django = super.django_5_2; });
packageOverrides = (self: super: { django = super.django_5; });
};
in
+1 -1
View File
@@ -9,7 +9,7 @@
let
py = python3.override {
self = py;
packageOverrides = _final: prev: { django = prev.django_5_2; };
packageOverrides = _final: prev: { django = prev.django_5; };
};
extraBuildInputs = plugins py.pkgs;
+1 -1
View File
@@ -9,7 +9,7 @@
let
py = python3.override {
self = py;
packageOverrides = _final: prev: { django = prev.django_5_2; };
packageOverrides = _final: prev: { django = prev.django_5; };
};
extraBuildInputs = plugins py.pkgs;
+1 -1
View File
@@ -42,7 +42,7 @@ let
python = python3.override {
self = python;
packageOverrides = final: prev: {
django = prev.django_5_2;
django = prev.django_5;
fido2 = prev.fido2.overridePythonAttrs {
version = "1.2.0";
+1 -1
View File
@@ -10,7 +10,7 @@
let
python = python3.override {
packageOverrides = final: prev: {
django = prev.django_5_2;
django = prev.django_5;
};
};
in
+1 -1
View File
@@ -12,7 +12,7 @@ let
python = python3.override {
self = python;
packageOverrides = final: prev: {
django = prev.django_5_2;
django = prev.django_5;
django-countries = prev.django-countries.overridePythonAttrs (oldAttrs: rec {
version = "8.1.0";
+1 -1
View File
@@ -18,7 +18,7 @@
let
python = python3.override {
packageOverrides = final: prev: {
django = prev.django_5_2;
django = prev.django_5;
};
};
in
+1
View File
@@ -120,6 +120,7 @@ mapAliases {
django-crispy-bootstrap5 = crispy-bootstrap5; # added 2025-06-11
django_3 = throw "Django 3 has reached it's EOL in 2024-04 and has therefore been removed."; # added 2025-01-25
django_5_1 = throw "Django 5.1 has reached it's EOL in 2025-12 and has therefore been removed."; # added 2025-11-30"
django_5_2 = django_5; # added 2026-01-18
django_appconf = throw "'django_appconf' has been renamed to/replaced by 'django-appconf'"; # Converted to throw 2025-10-29
django_classytags = throw "'django_classytags' has been renamed to/replaced by 'django-classy-tags'"; # Converted to throw 2025-10-29
django_colorful = throw "'django_colorful' has been renamed to/replaced by 'django-colorful'"; # Converted to throw 2025-10-29
+1 -3
View File
@@ -4368,9 +4368,7 @@ self: super: with self; {
# LTS in extended support phase
django_4 = callPackage ../development/python-modules/django/4.nix { };
django_5 = self.django_5_2;
django_5_2 = callPackage ../development/python-modules/django/5_2.nix { };
django_5 = callPackage ../development/python-modules/django/5.nix { };
djangocms-admin-style = callPackage ../development/python-modules/djangocms-admin-style { };