9 buildPythonPackage rec {
10 pname = "jupyterhub-tmpauthenticator";
12 format = "setuptools";
14 disabled = pythonOlder "3.8";
17 inherit pname version;
18 hash = "sha256-7TuAYP6mRffsZL+O+AMgt5HBu6PhwLYj5A8X8DnMfl0=";
21 propagatedBuildInputs = [ jupyterhub ];
23 # No tests available in the package
26 pythonImportsCheck = [ "tmpauthenticator" ];
29 description = "Simple Jupyterhub authenticator that allows anyone to log in";
30 homepage = "https://github.com/jupyterhub/tmpauthenticator";
31 changelog = "https://github.com/jupyterhub/tmpauthenticator/blob/v${version}/CHANGELOG.md";
32 license = with licenses; [ bsd3 ];
33 maintainers = with maintainers; [ chiroptical ];