summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-10-04 18:49:58 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-10-05 03:05:20 +0200
commit3539510aaef2720122ffbc5e33940242ed7ef8ce (patch)
tree7e7bdc734f080bf685fe81790f85418cb49e2d77
parent9d49372956a2b98efe583235ddc21b447c1659cd (diff)
downloadnixpkgs-3539510aaef2720122ffbc5e33940242ed7ef8ce.tar
nixpkgs-3539510aaef2720122ffbc5e33940242ed7ef8ce.tar.gz
nixpkgs-3539510aaef2720122ffbc5e33940242ed7ef8ce.tar.bz2
nixpkgs-3539510aaef2720122ffbc5e33940242ed7ef8ce.tar.lz
nixpkgs-3539510aaef2720122ffbc5e33940242ed7ef8ce.tar.xz
nixpkgs-3539510aaef2720122ffbc5e33940242ed7ef8ce.tar.zst
nixpkgs-3539510aaef2720122ffbc5e33940242ed7ef8ce.zip
python311Packages.django_3: 3.2.20 -> 3.2.22
https://docs.djangoproject.com/en/dev/releases/3.2.21/
https://docs.djangoproject.com/en/dev/releases/3.2.22/

https://www.djangoproject.com/weblog/2023/sep/04/security-releases/
https://www.djangoproject.com/weblog/2023/oct/04/security-releases/

Fixes: CVE-2023-41164, CVE-2023-43665
-rw-r--r--pkgs/development/python-modules/django/3.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/django/3.nix b/pkgs/development/python-modules/django/3.nix
index 9c8e1384242..7796c31ebd0 100644
--- a/pkgs/development/python-modules/django/3.nix
+++ b/pkgs/development/python-modules/django/3.nix
@@ -15,14 +15,14 @@
 
 buildPythonPackage rec {
   pname = "django";
-  version = "3.2.20";
+  version = "3.2.22";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     pname = "Django";
     inherit version;
-    hash = "sha256-3sKhFnh7jhSWIBS/eOEgu6RUE1EI4a+em5Gt57KWTEA=";
+    hash = "sha256-g7bWawbkhIB9d4Jj/cf5GG1NwYYvz6ZQeDBEasawYLo=";
   };
 
   patches = [