mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
33 lines
659 B
Python
33 lines
659 B
Python
|
|
"""
|
||
|
|
Hook specifications that pluggy plugins can override
|
||
|
|
"""
|
||
|
|
import pluggy
|
||
|
|
|
||
|
|
hookspec = pluggy.HookspecMarker('tljh')
|
||
|
|
hookimpl = pluggy.HookimplMarker('tljh')
|
||
|
|
|
||
|
|
|
||
|
|
@hookspec
|
||
|
|
def tljh_extra_user_conda_packages():
|
||
|
|
"""
|
||
|
|
Return list of extra conda packages to install in user environment.
|
||
|
|
"""
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
@hookspec
|
||
|
|
def tljh_extra_user_pip_packages():
|
||
|
|
"""
|
||
|
|
Return list of extra pip packages to install in user environment.
|
||
|
|
"""
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
@hookspec
|
||
|
|
def tljh_extra_apt_packages():
|
||
|
|
"""
|
||
|
|
Return list of extra apt packages to install in the user environment.
|
||
|
|
|
||
|
|
These will be installed before additional pip or conda packages.
|
||
|
|
"""
|
||
|
|
pass
|