python312Packages.django-ipware: add python-ipware dependencies

python-ipware is missing from dependencies whereas it is used in
https://github.com/un33k/django-ipware/blob/v7.0.1/ipware/ip.py
This commit is contained in:
soyouzpanda 2024-07-08 21:57:49 +02:00
parent b9d0607ec1
commit 00fd49fc60

View File

@ -3,6 +3,7 @@
buildPythonPackage,
fetchPypi,
django,
python-ipware,
pythonOlder,
}:
@ -18,7 +19,7 @@ buildPythonPackage rec {
hash = "sha256-2exD0r983yFv7Y1JSghN61dhpUhgpTsudDRqTzhM/0c=";
};
propagatedBuildInputs = [ django ];
propagatedBuildInputs = [ django python-ipware ];
# django.core.exceptions.ImproperlyConfigured: Requested setting IPWARE_TRUSTED_PROXY_LIST, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
doCheck = false;