pythonPackages.django-auth-ldap: init at 1.7.0
This commit is contained in:
parent
b02ae8e22c
commit
177ed2f520
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/django-auth-ldap/default.nix
Normal file
30
pkgs/development/python-modules/django-auth-ldap/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi, isPy27
|
||||
, ldap , django_2_2
|
||||
, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "django-auth-ldap";
|
||||
version = "2.0.0";
|
||||
disabled = isPy27;
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1samrxf8lic6a4c0lgw31b38s97l8hnaknd7ilyy2plahmm0h03i";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ldap django_2_2 ];
|
||||
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
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Django authentication backend that authenticates against an LDAP service";
|
||||
homepage = https://github.com/django-auth-ldap/django-auth-ldap;
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ mmai ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -2907,6 +2907,8 @@ in {
|
|||
|
||||
django_appconf = callPackage ../development/python-modules/django_appconf { };
|
||||
|
||||
django-auth-ldap = callPackage ../development/python-modules/django-auth-ldap { };
|
||||
|
||||
django_colorful = callPackage ../development/python-modules/django_colorful { };
|
||||
|
||||
django-cache-url = callPackage ../development/python-modules/django-cache-url { };
|
||||
|
|
Loading…
Reference in a new issue