depot/third_party/nixpkgs/pkgs/development/python-modules/django-auth-ldap/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

57 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPy27,
# buildtime
setuptools-scm,
# runtime
django,
python-ldap,
# tests
python,
pkgs,
}:
buildPythonPackage rec {
pname = "django-auth-ldap";
version = "4.8.0";
format = "pyproject";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
hash = "sha256-YEJQk43cn9phnyR8elmwsvBuU6fT9GoVbyiqMN1xpzg=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
django
python-ldap
];
# ValueError: SCHEMADIR is None, ldap schemas are missing.
doCheck = false;
checkPhase = ''
runHook preCheck
export PATH=${pkgs.openldap}/bin:${pkgs.openldap}/libexec:$PATH
${python.interpreter} -m django test --settings tests.settings
runHook postCheck
'';
pythonImportsCheck = [ "django_auth_ldap" ];
meta = with 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;
};
}