me
/
guix
Archived
1
0
Fork 0

gnu: python-dj-database-url: Update to 2.1.0.

* gnu/packages/django.scm (python-dj-database-url): Update to 2.1.0.
Marius Bakke 2023-09-16 14:23:46 +08:00
parent 40f1f2d33b
commit c463f184e3
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 5 additions and 3 deletions

View File

@ -673,14 +673,16 @@ example, explicit calls to callables from templates and better performance.")
(define-public python-dj-database-url (define-public python-dj-database-url
(package (package
(name "python-dj-database-url") (name "python-dj-database-url")
(version "0.5.0") (version "2.1.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "dj-database-url" version)) (uri (pypi-uri "dj-database-url" version))
(sha256 (sha256
(base32 (base32
"0qs16g5y3lflxibsl8gwkwap21crhmmv98l60rdq6x1wawgypsja")))) "0pqkifl5zradgsznjpk6g6zp64gnsxdav7x3knf56vh8w7pjq17j"))))
(build-system python-build-system) (build-system python-build-system)
(propagated-inputs
(list python-django python-typing-extensions))
(home-page "https://github.com/kennethreitz/dj-database-url") (home-page "https://github.com/kennethreitz/dj-database-url")
(synopsis "Use Database URLs in your Django Application") (synopsis "Use Database URLs in your Django Application")
(description (description
@ -690,7 +692,7 @@ DATABASE_URL environment variable to configure your Django application.
The dj_database_url.config method returns a Django database connection The dj_database_url.config method returns a Django database connection
dictionary, populated with all the data specified in your URL. There is also a dictionary, populated with all the data specified in your URL. There is also a
conn_max_age argument to easily enable Djangos connection pool.") conn_max_age argument to easily enable Djangos connection pool.")
(license license:bsd-2))) (license license:bsd-3)))
(define-public python-dj-email-url (define-public python-dj-email-url
(package (package