me
/
guix
Archived
1
0
Fork 0

gnu: Add gunicorn-next.

* gnu/packages/python-xyz.scm (gunicorn-next): New variable.

Change-Id: I7a89e77bb0fcdfa620d07600bb06c75a720ce9b8
master
jgart 2024-07-16 01:51:04 -05:00
parent 07557fd149
commit b91353f372
No known key found for this signature in database
GPG Key ID: A52AA2B477B6DD35
1 changed files with 15 additions and 0 deletions

View File

@ -6182,6 +6182,21 @@ various web frameworks, simply implemented, light on server resources,
and fairly speedy.")
(license license:expat)))
(define-public gunicorn-next
(package
(inherit gunicorn)
(name "gunicorn")
(version "22.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "gunicorn" version))
(sha256
(base32
"0qzc3ghayc137hlwrqqwkkhaf8f5h9ja21qwy4rznxpz75i462sa"))))
;; CVE-2024-1135 is fixed in version 22.0.0.
(properties `((lint-hidden-cve . ("CVE-2024-1135"))))))
;; break cyclic dependency for python-aiohttp, which depends on gunicorn for
;; its tests
(define-public gunicorn-bootstrap