Variable: package-hidden-regexps
package-hidden-regexps is a customizable variable defined in
package.el.gz.
Value
nil
Documentation
List of regexps matching the name of packages to hide.
If the name of a package matches any of these regexps it is
omitted from the package menu. To toggle this, type M-x package-menu-toggle-hiding (package-menu-toggle-hiding).
Values can be interactively added to this list by typing
M-x package-menu-hide-package (package-menu-hide-package) on a package.
This variable was added, or its default value changed, in Emacs 25.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/package.el.gz
(defcustom package-hidden-regexps nil
"List of regexps matching the name of packages to hide.
If the name of a package matches any of these regexps it is
omitted from the package menu. To toggle this, type \\[package-menu-toggle-hiding].
Values can be interactively added to this list by typing
\\[package-menu-hide-package] on a package."
:version "25.1"
:type '(repeat (regexp :tag "Hide packages with name matching")))