python312Packages.gunicorn: 22.0.0 -> 23.0.0

Fixes CVE-2024-1135

Changelog: https://github.com/benoitc/gunicorn/releases/tag/23.0.0
Diff: https://github.com/benoitc/gunicorn/compare/22.0.0...23.0.0
This commit is contained in:
seth
2024-08-19 03:56:35 -04:00
parent 39c2f61f05
commit 65e73f4d7a
@@ -22,16 +22,16 @@
buildPythonPackage rec {
pname = "gunicorn";
version = "22.0.0";
version = "23.0.0";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "benoitc";
repo = "gunicorn";
rev = "refs/tags/${version}";
hash = "sha256-xIXQMAdTZEBORu6789tLpT1OpBL+aveL/MfDj4f4bes=";
hash = "sha256-Dq/mrQwo3II6DBvYfD1FHsKHaIlyHlJCZ+ZyrM4Efe0=";
};
build-system = [ setuptools ];