mirror of
https://github.com/openwrt/packages.git
synced 2026-06-01 07:21:56 +08:00
b0d8a3d384
This commit converts plain HTTP URLs to HTTPS, and updates old or outdated URLs. Signed-off-by: Yanase Yuki <dev@zpc.st>
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-dotenv
|
|
PKG_VERSION:=1.2.2
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=python-dotenv
|
|
PYPI_SOURCE_NAME:=python_dotenv
|
|
PKG_HASH:=2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3
|
|
|
|
PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-dotenv
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=Add .env support to your django/flask apps in development and deployments
|
|
URL:=https://github.com/theskumar/python-dotenv
|
|
DEPENDS:=+python3-click +python3-light +python3-logging
|
|
endef
|
|
|
|
define Package/python3-dotenv/description
|
|
A Python library which reads the key-value pair from .env file and adds them
|
|
to environment variable. It is great for managing app settings during
|
|
development and in production using 12-factor principles.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-dotenv))
|
|
$(eval $(call BuildPackage,python3-dotenv))
|
|
$(eval $(call BuildPackage,python3-dotenv-src))
|