This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new ee225425c4 gnu: python-django-environ: Update to 0.12.1.
ee225425c4 is described below
commit ee225425c4406376e5c6505ed00123cb4891e55b
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Sat Feb 14 08:50:25 2026 +0100
gnu: python-django-environ: Update to 0.12.1.
* gnu/packages/django.scm (python-django-environ): Update to 0.12.1.
[source]: Switch to git-fetch.
[arguments]<#:test-flags>: Enable fixed test.
[native-inputs]: Remove python-wheel.
Change-Id: Idc5a137db427b2310b31f89c4a8f02667ac27a4b
Signed-off-by: jgart <[email protected]>
---
gnu/packages/django.scm | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index aa98621ede..d4a2409c4a 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -2045,23 +2045,19 @@ image files already supported by it.")
(define-public python-django-environ
(package
(name "python-django-environ")
- (version "0.12.0")
+ (version "0.12.1")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "django_environ" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/joke2k/django-environ")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "06h4g50qy1h77b4n28xbyzl2wvsblzs9qi63d7kvvm9x8n8whz92"))))
+ (base32 "0alm1ir5fsiq26dnm0pam1rdyiwnpqmnqy537xx3jicjdz2ajy7y"))))
(build-system pyproject-build-system)
- (arguments
- (list
- ;; Skip test that fails on later Python versions; code itself seems fine.
- ;; See: <https://github.com/joke2k/django-environ/issues/574>.
- #:test-flags
- #~(list "-k" "not test_db_parsing")))
(native-inputs (list python-pytest
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://django-environ.readthedocs.io/")
(synopsis "Configure Django project using environment variables")
(description