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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "758081bbdb28b26313bb18c9d8aa2b8fcdc9162e4d3ab196c626567e64f1ab8b";
  };

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