summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFarkas, Arnold <arnold.farkas@worldquant.com>2020-01-20 07:46:17 -0500
committerJon <jonringer@users.noreply.github.com>2020-01-22 00:56:32 -0800
commit37298b58c6039110e41320f01d0f560686e0c418 (patch)
tree9c937897c7dd84be342094a01ef776de0cc0c71b /pkgs/development
parent9588e9c89c566e3dec2aaf13915c90425e6e6b87 (diff)
downloadnixpkgs-37298b58c6039110e41320f01d0f560686e0c418.tar
nixpkgs-37298b58c6039110e41320f01d0f560686e0c418.tar.gz
nixpkgs-37298b58c6039110e41320f01d0f560686e0c418.tar.bz2
nixpkgs-37298b58c6039110e41320f01d0f560686e0c418.tar.lz
nixpkgs-37298b58c6039110e41320f01d0f560686e0c418.tar.xz
nixpkgs-37298b58c6039110e41320f01d0f560686e0c418.tar.zst
nixpkgs-37298b58c6039110e41320f01d0f560686e0c418.zip
pythonPackages.django-auth-ldap: update django dependency
Package `django-auth-ldap' requires Django 1.11+ which package `django' satisfies.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/django-auth-ldap/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/django-auth-ldap/default.nix b/pkgs/development/python-modules/django-auth-ldap/default.nix
index 3e95e7ff16b..f0de263f130 100644
--- a/pkgs/development/python-modules/django-auth-ldap/default.nix
+++ b/pkgs/development/python-modules/django-auth-ldap/default.nix
@@ -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