lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.django_5: 5.1.8 -> 5.1.9

Fixes CVE-2025-32873.
https://www.djangoproject.com/weblog/2025/may/07/security-releases/

https://docs.djangoproject.com/en/dev/releases/5.1.9/

+2 -5
+2 -5
pkgs/development/python-modules/django/5.nix
··· 44 44 45 45 buildPythonPackage rec { 46 46 pname = "django"; 47 - version = "5.1.8"; 47 + version = "5.1.9"; 48 48 pyproject = true; 49 49 50 50 disabled = pythonOlder "3.10"; ··· 53 53 owner = "django"; 54 54 repo = "django"; 55 55 rev = "refs/tags/${version}"; 56 - hash = "sha256-TZjqB9khEHnkkxYvAC/RzAvOIwdemh0uT4UVdosMq6M="; 56 + hash = "sha256-uBP6MoVjPUtNu6KxLjaYmKTN42JIUCTJSuSnQWSxyQU="; 57 57 }; 58 58 59 59 patches = ··· 82 82 ]; 83 83 84 84 postPatch = '' 85 - substituteInPlace pyproject.toml \ 86 - --replace-fail "setuptools>=61.0.0,<69.3.0" setuptools 87 - 88 85 substituteInPlace tests/utils_tests/test_autoreload.py \ 89 86 --replace-fail "/usr/bin/python" "${python.interpreter}" 90 87 '';