summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-05-04 14:39:33 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-05-04 14:39:41 +0200
commit8b9ea18d2823e315e1afe754aaff4b5f034d6be7 (patch)
treedb57fc1fba4b1fc067b0e3c233256a010dcececa
parent353a67c4d0f4e7d0edc6c7894745b159d9a04621 (diff)
downloadnixpkgs-8b9ea18d2823e315e1afe754aaff4b5f034d6be7.tar
nixpkgs-8b9ea18d2823e315e1afe754aaff4b5f034d6be7.tar.gz
nixpkgs-8b9ea18d2823e315e1afe754aaff4b5f034d6be7.tar.bz2
nixpkgs-8b9ea18d2823e315e1afe754aaff4b5f034d6be7.tar.lz
nixpkgs-8b9ea18d2823e315e1afe754aaff4b5f034d6be7.tar.xz
nixpkgs-8b9ea18d2823e315e1afe754aaff4b5f034d6be7.tar.zst
nixpkgs-8b9ea18d2823e315e1afe754aaff4b5f034d6be7.zip
python310Packages.django_4: 4.2 -> 4.2.1
https://docs.djangoproject.com/en/4.2/releases/4.2.1/

Fixes: CVE-2023-31047
-rw-r--r--pkgs/development/python-modules/django/4.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/django/4.nix b/pkgs/development/python-modules/django/4.nix
index 26b7391c51e..f6b19807a87 100644
--- a/pkgs/development/python-modules/django/4.nix
+++ b/pkgs/development/python-modules/django/4.nix
@@ -42,14 +42,14 @@
 
 buildPythonPackage rec {
   pname = "Django";
-  version = "4.2";
+  version = "4.2.1";
   format = "pyproject";
 
   disabled = pythonOlder "3.10";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-w24qsSgk4qw2r6iyUVpwxTx3QvDW6u+nMR7DeVWNuZc=";
+    hash = "sha256-fvprH3gaYRmhCslLR5Te2Q24rMvngCKBzSb4Zk/+1Zw=";
   };
 
   patches = [