blob: b01e2bab49f96b822a4da59466d65451ee048a1f [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001include $(TOPDIR)/rules.mk
2
3PKG_NAME:=python-dotenv
4PKG_VERSION:=1.0.1
5PKG_RELEASE:=1
6
7PYPI_NAME:=python-dotenv
8PKG_HASH:=e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca
9
10PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
11PKG_LICENSE:=BSD-3-Clause
12PKG_LICENSE_FILES:=LICENSE
13
14include ../pypi.mk
15include $(INCLUDE_DIR)/package.mk
16include ../python3-package.mk
17
18define Package/python3-dotenv
19 SECTION:=lang
20 CATEGORY:=Languages
21 SUBMENU:=Python
22 TITLE:=Add .env support to your django/flask apps in development and deployments
23 URL:=http://github.com/theskumar/python-dotenv
24 DEPENDS:=+python3-click +python3-light +python3-logging
25endef
26
27define Package/python3-dotenv/description
28 A Python library which reads the key-value pair from .env file and adds them
29 to environment variable. It is great for managing app settings during
30 development and in production using 12-factor principles.
31endef
32
33$(eval $(call Py3Package,python3-dotenv))
34$(eval $(call BuildPackage,python3-dotenv))
35$(eval $(call BuildPackage,python3-dotenv-src))