guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 1f56a7abadf1aad09a97f4e7d4dfbedc1ac50bf1
Author: Vinicius Monego <[email protected]>
AuthorDate: Mon Jul 14 22:34:34 2025 -0300
gnu: Add python-django-environ.
* gnu/packages/django.scm (python-django-environ): New variable.
Change-Id: Iafbaa1cf3373fc38075f789ab06fdfb93cecb635
---
gnu/packages/django.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 21195ba7f6..8a670e7aa7 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1732,6 +1732,27 @@ models that use Django's standard @code{ImageField}, in
addition to the
image files already supported by it.")
(license license:expat)))
+(define-public python-django-environ
+ (package
+ (name "python-django-environ")
+ (version "0.12.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "django_environ" version))
+ (sha256
+ (base32 "06h4g50qy1h77b4n28xbyzl2wvsblzs9qi63d7kvvm9x8n8whz92"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest
+ python-setuptools
+ python-wheel))
+ (home-page "https://django-environ.readthedocs.io/")
+ (synopsis "Configure Django project using environment variables")
+ (description
+ "This Django package allows you to utilize 12factor inspired environment
+variables to configure your Django application.")
+ (license license:expat)))
+
(define-public python-django-cleanup
(package
(name "python-django-cleanup")