pythonPackages.jupyterhub-tmpauthenticator: init at 0.6
This commit is contained in:
parent
a8bd5c1dc4
commit
c4330a0ca0
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4544,6 +4544,8 @@ in {
|
|||||||
|
|
||||||
jupyterhub-ldapauthenticator = callPackage ../development/python-modules/jupyterhub-ldapauthenticator { };
|
jupyterhub-ldapauthenticator = callPackage ../development/python-modules/jupyterhub-ldapauthenticator { };
|
||||||
|
|
||||||
|
jupyterhub-tmpauthenticator = callPackage ../development/python-modules/jupyterhub-tmpauthenticator { };
|
||||||
|
|
||||||
jupyterhub-systemdspawner = callPackage ../development/python-modules/jupyterhub-systemdspawner {
|
jupyterhub-systemdspawner = callPackage ../development/python-modules/jupyterhub-systemdspawner {
|
||||||
inherit (pkgs) bash;
|
inherit (pkgs) bash;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user