diff options
| author | Vinicius Monego <monego@posteo.net> | 2025-07-24 06:27:18 -0300 |
|---|---|---|
| committer | Vinicius Monego <monego@posteo.net> | 2025-07-26 13:32:50 -0300 |
| commit | 80c43facdeed8c30f80155648ef33364fbdddd73 (patch) | |
| tree | 0cf3607430a4521e7e96624ac3dd86476319a7c2 | |
| parent | f6e59b049b99bb8cd0f31e8771dd62cbe41bca84 (diff) | |
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
| -rw-r--r-- | gnu/packages/django.scm | 11 |
1 files 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 |
