You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.0 KiB

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