2021-02-05 17:12:51 +00:00
{ lib
2020-04-24 23:36:52 +00:00
, buildPythonPackage
, fetchPypi , isPy27
2020-09-25 04:45:31 +00:00
, ldap , django
2020-04-24 23:36:52 +00:00
, mock
} :
buildPythonPackage rec {
pname = " d j a n g o - a u t h - l d a p " ;
2021-08-27 14:25:00 +00:00
version = " 3 . 0 . 0 " ;
2020-04-24 23:36:52 +00:00
disabled = isPy27 ;
src = fetchPypi {
inherit pname version ;
2021-08-27 14:25:00 +00:00
sha256 = " 1 f 2 d 5 c 5 6 2 d 9 b a 9 a 5 e 9 a 6 4 0 9 9 a e 9 7 9 8 e 1 a 6 3 8 4 0 a 1 1 a f e 4 d 1 c 4 a 9 c 7 4 1 2 1 f 0 6 6 e a a " ;
2020-04-24 23:36:52 +00:00
} ;
2020-09-25 04:45:31 +00:00
propagatedBuildInputs = [ ldap django ] ;
checkInputs = [ mock ] ;
2020-04-24 23:36:52 +00:00
# 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 ;
2021-08-27 14:25:00 +00:00
pythonImportsCheck = [ " d j a n g o _ a u t h _ l d a p " ] ;
2021-01-15 22:18:51 +00:00
meta = with lib ; {
2020-04-24 23:36:52 +00:00
description = " D j a n g o a u t h e n t i c a t i o n b a c k e n d t h a t a u t h e n t i c a t e s a g a i n s t a n L D A P s e r v i c e " ;
homepage = " h t t p s : / / g i t h u b . c o m / d j a n g o - a u t h - l d a p / d j a n g o - a u t h - l d a p " ;
license = licenses . bsd2 ;
maintainers = with maintainers ; [ mmai ] ;
platforms = platforms . linux ;
} ;
}