plugins
#
In this module, you will find everything relevant to conda's plugin system. It contains all of the code that plugin authors will use to write plugins, as well as conda's internal implementations of plugins.
Modules relevant for plugin authors
conda.plugins.hookspec
: all available hook specifications are listed here, including examples of how to use themconda.plugins.types
: important types to use when defining plugin hooks
Modules relevant for internal development
conda.plugins.manager
: includes our custom subclass of pluggy's PluginManager class
Modules with internal plugin implementations
conda.plugins.solvers
: implementation of the "classic" solverconda.plugins.subcommands.doctor
:conda doctor
subcommandconda.plugins.virtual_packages
: registers virtual packages in conda
- hookimpl#