diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-10 03:16:15 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:34 +0200 |
commit | 303f7ced333ab5de8b5311a13a7b1418a13dd82b (patch) | |
tree | 43340c6913960779ff1321b827661c6f3abeffc1 | |
parent | e8600e72b0e44a1d5fe7428a30ddb5a0a4d65321 (diff) | |
download | guix-303f7ced333ab5de8b5311a13a7b1418a13dd82b.tar.gz guix-303f7ced333ab5de8b5311a13a7b1418a13dd82b.zip |
gnu: Remove python-django-3.2.
* gnu/packages/django.scm (python-django-3.2): Delete variable.
Change-Id: Iebc9809999473c2f99d35a78aba8f3f8fbf6b14e
Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r-- | gnu/packages/django.scm | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 44d47b39ab..470e3894eb 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -148,26 +148,10 @@ to the @dfn{don't repeat yourself} (DRY) principle.") ;; This CVE seems fixed since 4.2.1. (lint-hidden-cve . ("CVE-2023-31047")))))) -(define-public python-django-3.2 - (package - (inherit python-django-4.2) - (version "3.2.21") - (source (origin - (method url-fetch) - (uri (pypi-uri "Django" version)) - (sha256 - (base32 - "0g3zm2glh76g31q06g6fwkwvkrphjj3mnap5sgk1hx3v9r44rpm5")))) - (native-search-paths '()) ;no need for TZDIR - (propagated-inputs - (modify-inputs (package-propagated-inputs python-django-4.2) - ;; Django 4.0 deprecated pytz in favor of Pythons built-in zoneinfo. - (append python-pytz))))) - ;; archivebox requires django>=3.1.3,<3.2 (define-public python-django-3.1.14 (package - (inherit python-django-3.2) + (inherit python-django-4.2) (version "3.1.14") (source (origin (method url-fetch) @@ -176,7 +160,7 @@ to the @dfn{don't repeat yourself} (DRY) principle.") (base32 "0ix3v2wlnplv78zxjrlw8z3hiap2d5mxvk0ny2fc65526shsb93j")))) (propagated-inputs - (modify-inputs (package-propagated-inputs python-django-3.2) + (modify-inputs (package-propagated-inputs python-django-4.2) ;; Django 4.0 deprecated pytz in favor of Pythons built-in zoneinfo. (append python-pytz))))) |