me
/
guix
Archived
1
0
Fork 0

gnu: Remove python-django@2.2.

This version is no longer maintained and contains known security flaws.

* gnu/packages/django.scm (python-django-2.2): Remove variable.
Marius Bakke 2023-09-09 20:55:04 +08:00
parent 12af750868
commit d9620855de
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 0 additions and 15 deletions

View File

@ -171,21 +171,6 @@ to the @dfn{don't repeat yourself} (DRY) principle.")
;; Django 4.0 deprecated pytz in favor of Pythons built-in zoneinfo.
(append python-pytz)))))
(define-public python-django-2.2
(package
(inherit python-django-3.2)
(version "2.2.28")
(source (origin
(method url-fetch)
(uri (pypi-uri "Django" version))
(sha256
(base32
"04vl7aivsshzsnn547lm4jdinr67afhdspc40f0c06xzmxbvc002"))))
(native-inputs
(modify-inputs (package-native-inputs python-django-3.2)
(prepend ;; 2.2 requires Selenium for the test suite.
python-selenium)))))
;; Use 3.2 LTS as the default until packages gain support for 4.x.
(define-public python-django python-django-3.2)