pythonPackages.jupyterhub-ldapauthenticator: init at 1.1

This commit is contained in:
Matan Shenhav 2018-02-24 12:16:18 +00:00
parent 45fcaa64ef
commit 23b6f5e229
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

@ -9303,6 +9303,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";