8 buildPythonPackage rec {
9 pname = "jupyterhub-tmpauthenticator";
11 format = "setuptools";
13 disabled = pythonOlder "3.8";
16 inherit pname version;
17 hash = "sha256-7TuAYP6mRffsZL+O+AMgt5HBu6PhwLYj5A8X8DnMfl0=";
20 propagatedBuildInputs = [
24 # No tests available in the package
27 pythonImportsCheck = [
32 description = "Simple Jupyterhub authenticator that allows anyone to log in";
33 homepage = "https://github.com/jupyterhub/tmpauthenticator";
34 changelog = "https://github.com/jupyterhub/tmpauthenticator/blob/v${version}/CHANGELOG.md";
35 license = with licenses; [ bsd3 ];
36 maintainers = with maintainers; [ chiroptical ];