mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.django-auth-ldap: update django dependency
Package `django-auth-ldap' requires Django 1.11+ which package `django' satisfies.
This commit is contained in:
parent
9588e9c89c
commit
37298b58c6
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi, isPy27
|
||||
, ldap , django_2_2
|
||||
, ldap , django
|
||||
, mock
|
||||
}:
|
||||
|
||||
|
@ -14,7 +14,7 @@ buildPythonPackage rec {
|
|||
sha256 = "5f48232c85ddfa33e3573153e6080526ac2eef5e7ec9cf42b5c4ba3c62afb96d";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ldap django_2_2 ];
|
||||
propagatedBuildInputs = [ ldap django ];
|
||||
checkInputs = [ mock ];
|
||||
|
||||
# django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings
|
||||
|
|
Loading…
Reference in a new issue