mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.jupyterhub-ldapauthenticator: init at 1.1
This commit is contained in:
parent
45fcaa64ef
commit
23b6f5e229
2 changed files with 30 additions and 0 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue