diff options
author | Vinicius Monego <monego@posteo.net> | 2025-07-14 22:34:34 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-07-23 15:30:16 -0300 |
commit | 1f56a7abadf1aad09a97f4e7d4dfbedc1ac50bf1 (patch) | |
tree | 986ac47a81f4712e0338722467d7e634eea7c5c0 | |
parent | 147792f3d3419a5e6e0e3fc17b8e6ff4785ace42 (diff) |
gnu: Add python-django-environ.
* gnu/packages/django.scm (python-django-environ): New variable.
Change-Id: Iafbaa1cf3373fc38075f789ab06fdfb93cecb635
-rw-r--r-- | gnu/packages/django.scm | 21 |
1 files changed, 21 insertions, 0 deletions
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") |