python310Packages.jupyterhub-tmpauthenticator: update disabled

- add format
This commit is contained in:
Fabian Affolter 2023-08-17 21:34:40 +02:00 committed by GitHub
parent cc4ecf1ef2
commit fed40d2a10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,19 +8,25 @@
buildPythonPackage rec {
pname = "jupyterhub-tmpauthenticator";
version = "1.0.0";
disabled = pythonOlder "3.5";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-7TuAYP6mRffsZL+O+AMgt5HBu6PhwLYj5A8X8DnMfl0=";
};
propagatedBuildInputs = [ jupyterhub ];
propagatedBuildInputs = [
jupyterhub
];
# No tests available in the package
doCheck = false;
pythonImportsCheck = [ "tmpauthenticator" ];
pythonImportsCheck = [
"tmpauthenticator"
];
meta = with lib; {
description = "Simple Jupyterhub authenticator that allows anyone to log in";