Files
Fabian Affolter 95bb57062a python3Packages.django-environ: 0.12.0 -> 0.14.0
https://github.com/joke2k/django-environ/releases/tag/v0.14.0

This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:19 +02:00

37 lines
794 B
Nix

{
lib,
buildPythonPackage,
django,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "django-environ";
version = "0.14.0";
pyproject = true;
src = fetchPypi {
pname = "django_environ";
inherit version;
hash = "sha256-tsSNk7nS/4o+oUCZ6Qw1qk8QHBtNXyYt/uDSewZ0Ltc=";
};
build-system = [ setuptools ];
buildInputs = [ django ];
# The testsuite fails to modify the base environment
doCheck = false;
pythonImportsCheck = [ "environ" ];
meta = {
description = "Utilize environment variables to configure your Django application";
homepage = "https://github.com/joke2k/django-environ/";
changelog = "https://github.com/joke2k/django-environ/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}