summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-auth-ldap/default.nix
blob: 9f50a7ea22b9a2fdcb0aeede85db91b32579d242 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv
, buildPythonPackage
, fetchPypi, isPy27
, ldap , django 
, mock
}:

buildPythonPackage rec {
  pname = "django-auth-ldap";
  version = "2.1.1";
  disabled = isPy27;
  src = fetchPypi {
    inherit pname version;
    sha256 = "1j1fwinbkr4khn9i869r22jfdgw2kli0jqrz5shyd36jllsvrfzs";
  };

  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
  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;
  };
}