lol

python310Packages.jupyterhub-tmpauthenticator: update disabled

- add format

authored by

Fabian Affolter and committed by
GitHub
fed40d2a cc4ecf1e

+9 -3
+9 -3
pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix
··· 8 8 buildPythonPackage rec { 9 9 pname = "jupyterhub-tmpauthenticator"; 10 10 version = "1.0.0"; 11 - disabled = pythonOlder "3.5"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.8"; 12 14 13 15 src = fetchPypi { 14 16 inherit pname version; 15 17 hash = "sha256-7TuAYP6mRffsZL+O+AMgt5HBu6PhwLYj5A8X8DnMfl0="; 16 18 }; 17 19 18 - propagatedBuildInputs = [ jupyterhub ]; 20 + propagatedBuildInputs = [ 21 + jupyterhub 22 + ]; 19 23 20 24 # No tests available in the package 21 25 doCheck = false; 22 26 23 - pythonImportsCheck = [ "tmpauthenticator" ]; 27 + pythonImportsCheck = [ 28 + "tmpauthenticator" 29 + ]; 24 30 25 31 meta = with lib; { 26 32 description = "Simple Jupyterhub authenticator that allows anyone to log in";