guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 80c43facdeed8c30f80155648ef33364fbdddd73
Author: Vinicius Monego <[email protected]>
AuthorDate: Thu Jul 24 06:27:18 2025 -0300
gnu: python-dj-database-url: Update to 3.0.1.
* gnu/packages/django.scm (python-dj-database-url): Update to 3.0.1.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, python-wheel.
[propagated-inputs]: Remove python-typing-extensions.
[home-page]: Switch to maintained repository.
Change-Id: I78000fe797bc3a3801ee85e6303987d4505852f2
---
gnu/packages/django.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index f81eaef356..81f46d5db5 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -742,17 +742,18 @@ example, explicit calls to callables from templates and
better performance.")
(define-public python-dj-database-url
(package
(name "python-dj-database-url")
- (version "2.3.0")
+ (version "3.0.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "dj_database_url" version))
(sha256
(base32
- "11w7532lq05c3wysbn7f5jf82yj0vjjmsi2ylkjmfsqq6kkfhlmf"))))
- (build-system python-build-system)
+ "1y7ghizjni3imbmqh63mra8pcvqzr5q0hma1ijzwd3w8zcg9d549"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools python-wheel))
(propagated-inputs
- (list python-django python-typing-extensions))
- (home-page "https://github.com/kennethreitz/dj-database-url")
+ (list python-django))
+ (home-page "https://github.com/jazzband/dj-database-url")
(synopsis "Use Database URLs in your Django Application")
(description
"This simple Django utility allows you to utilize the 12factor inspired