python3Package.django_4: disable on 3.13 and newer

Django 4.2.x does not support Python 3.13 and newer.
This commit is contained in:
Martin Weinelt
2025-12-18 01:32:20 +01:00
parent 12713400c5
commit 652c495688
+1 -1
View File
@@ -48,7 +48,7 @@ buildPythonPackage rec {
version = "4.2.27";
format = "pyproject";
disabled = pythonOlder "3.8" || pythonAtLeast "3.14";
disabled = pythonOlder "3.8" || pythonAtLeast "3.13";
src = fetchFromGitHub {
owner = "django";