Merge pull request #35467 from ixxie/ldapauth

pythonPackages.jupyterhub-ldapauthenticator: init at 1.1
This commit is contained in:
Frederik Rietdijk 2018-02-26 07:00:00 +00:00 committed by GitHub
commit e6cc9a7688
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, jupyterhub
, ldap3
, fetchPypi
}:
buildPythonPackage rec {
pname = "jupyterhub-ldapauthenticator";
version = "1.1";
src = fetchPypi {
inherit pname version;
sha256 = "19dz3a3122wln8lkixj5jbh9x3cqlrcb3p7a53825cj72cmpcxwz";
};
# 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 ];
};
}

View file

@ -9096,6 +9096,8 @@ in {
jupyterhub = callPackage ../development/python-modules/jupyterhub { };
jupyterhub-ldapauthenticator = callPackage ../development/python-modules/jupyterhub-ldapauthenticator { };
jsonpath_rw = buildPythonPackage rec {
name = "jsonpath-rw-${version}";
version = "1.4.0";