Problem to include python module into firmware

I'm trying to include python module into my firmware according install-a-python-module-from-openwrt-makefile

Here is my Makefile:

include $(TOPDIR)/rules.mk

PKG_NAME:=gpsd
PKG_VERSION:=0.3.0
PKG_RELEASE:=1
PKG_SOURCE:=gpsd-py3-0.3.0.tar.gz
PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/62/1e/8ffc5bbbbea1a4501e59280b6f8127d4a54c20888dfa9ffdd7d08a06991a/
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)

PKG_BUILD_DEPENDS:=python

include $(INCLUDE_DIR)/package.mk
$(call include_mk, python-package.mk)

define Package/gpsd
	SECTION:=lang
	CATEGORY:=Languages
	SUBMENU:=Python
	TITLE:=gpsd
	URL:=https://pypi.org/project/gpsd-py3/#description
	DEPENDS:=+python
endef

define Package/gpsd/description
	python client for gpsd
endef

define Build/Compile
	$(call Build/Compile/PyMod,., \
        install --prefix="/usr" --root="$(PKG_INSTALL_DIR)" \
    )
endef

define Build/InstallDev
	$(INSTALL_DIR) $(STAGING_DIR)$(PYTHON_PKG_DIR)
	$(CP) \
        $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
        $(STAGING_DIR)$(PYTHON_PKG_DIR)/
    [ ! -e $(PKG_INSTALL_DIR)/usr/include ] || $(CP) \
        $(PKG_INSTALL_DIR)/usr/include/* \
        $(STAGING_DIR)/usr/include/
endef

define Package/gpsd/install
	$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)/
	$(CP) \
        $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
        $(1)$(PYTHON_PKG_DIR)/
endef

$(eval $(call BuildPackage,gpsd))

But I don't find my python module in menuconfig by path /Languages/Python

Why? How to fixit?

Also I tried to use such make:

include $(TOPDIR)/rules.mk

PKG_NAME:=python3-gpsd
PKG_VERSION:=0.3.0
PKG_RELEASE:=1

PYPI_NAME:=gpsd-py3
PKG_HASH:=2908d3bd78dfb6720ecfe22f97e139b5a4a198f38df3a77215cf644a33513192


include $(TOPDIR)/feeds/packages/lang/python/pypi.mk
include $(INCLUDE_DIR)/package.mk
include $(TOPDIR)/feeds/packages/lang/python/python3-package.mk


define Package/python3-gpsd
  SECTION:=lang
  CATEGORY:=Languages
  SUBMENU:=Python
  TITLE:=python3-gpsd
  URL:=https://palletsprojects.com/p/gpsd/
  DEPENDS:=+python3
endef

define Package/python3-gpsd/description
  gpsd client
endef

$(eval $(call Py3Package,python3-gpsd))
$(eval $(call BuildPackage,python3-gpsd))

But result is the same: I have no python3-gpsd in menuconfig by path /Languages/Python