pythonPackages.jupyterhub-tmpauthenticator: init at 0.6

This commit is contained in:
Barry Moore 2020-08-27 10:12:14 -04:00 committed by Jon
parent a8bd5c1dc4
commit c4330a0ca0
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, jupyterhub
}:
buildPythonPackage rec {
pname = "jupyterhub-tmpauthenticator";
version = "0.6";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "064x1ypxwx1l270ic97p8czbzb7swl9758v40k3w2gaqf9762f0l";
};
propagatedBuildInputs = [ jupyterhub ];
# No tests available in the package
doCheck = false;
pythonImportsCheck = [ "tmpauthenticator" ];
meta = with lib; {
description = "Simple Jupyterhub authenticator that allows anyone to log in.";
license = with licenses; [ bsd3 ];
homepage = "https://github.com/jupyterhub/tmpauthenticator";
maintainers = with maintainers; [ chiroptical ];
};
}

View File

@ -4544,6 +4544,8 @@ in {
jupyterhub-ldapauthenticator = callPackage ../development/python-modules/jupyterhub-ldapauthenticator { };
jupyterhub-tmpauthenticator = callPackage ../development/python-modules/jupyterhub-tmpauthenticator { };
jupyterhub-systemdspawner = callPackage ../development/python-modules/jupyterhub-systemdspawner {
inherit (pkgs) bash;
};