summary refs log tree commit diff
path: root/pkgs/development/python-modules/jupyterhub-ldapauthenticator/default.nix
blob: 9d5d2a4c23fa19974cee0f5bad808befa22f5dba (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
{ lib
, buildPythonPackage
, jupyterhub
, ldap3
, fetchPypi
}:

buildPythonPackage rec {
  pname = "jupyterhub-ldapauthenticator";
  version = "1.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "920b115babdc32e7b159fc497a0a794bb0f57b222ce2c26c74a23594892f9d3c";
  };

  # No tests implemented
  doCheck = false;
   
  propagatedBuildInputs = [ jupyterhub ldap3 ];

  meta = with lib; {
    description = "Simple LDAP Authenticator Plugin for JupyterHub";
    homepage =  "https://github.com/jupyterhub/ldapauthenticator";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ixxie ];
  };
}