summary refs log tree commit diff
path: root/pkgs/development/python-modules/jupyterhub-ldapauthenticator
diff options
context:
space:
mode:
authorMatan Shenhav <matan@fluxcraft.net>2018-02-24 12:16:18 +0000
committerMatan Shenhav <matan@fluxcraft.net>2018-02-25 18:05:23 +0000
commit23b6f5e229626df55fa13e16a0af8e59d8c2f90d (patch)
tree84c5137cabe700bcd0c5adcb293c3696ac6d17cb /pkgs/development/python-modules/jupyterhub-ldapauthenticator
parent45fcaa64efc1b2a3277de90353396195cbfa93db (diff)
downloadnixlib-23b6f5e229626df55fa13e16a0af8e59d8c2f90d.tar
nixlib-23b6f5e229626df55fa13e16a0af8e59d8c2f90d.tar.gz
nixlib-23b6f5e229626df55fa13e16a0af8e59d8c2f90d.tar.bz2
nixlib-23b6f5e229626df55fa13e16a0af8e59d8c2f90d.tar.lz
nixlib-23b6f5e229626df55fa13e16a0af8e59d8c2f90d.tar.xz
nixlib-23b6f5e229626df55fa13e16a0af8e59d8c2f90d.tar.zst
nixlib-23b6f5e229626df55fa13e16a0af8e59d8c2f90d.zip
pythonPackages.jupyterhub-ldapauthenticator: init at 1.1
Diffstat (limited to 'pkgs/development/python-modules/jupyterhub-ldapauthenticator')
-rw-r--r--pkgs/development/python-modules/jupyterhub-ldapauthenticator/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jupyterhub-ldapauthenticator/default.nix b/pkgs/development/python-modules/jupyterhub-ldapauthenticator/default.nix
new file mode 100644
index 000000000000..02348c68e07a
--- /dev/null
+++ b/pkgs/development/python-modules/jupyterhub-ldapauthenticator/default.nix
@@ -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 ];
+  };
+}