gnu: Add python-django-environ.

* gnu/packages/django.scm (python-django-environ): New variable.

Change-Id: Iafbaa1cf3373fc38075f789ab06fdfb93cecb635
This commit is contained in:
Vinicius Monego 2025-07-14 22:34:34 -03:00
parent 147792f3d3
commit 1f56a7abad
No known key found for this signature in database
GPG key ID: 637B0B138065B68A

View file

@ -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")