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.

42 lines
1.2 KiB

  1. #
  2. # Copyright (C) 2019 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-schedule
  9. PKG_VERSION:=0.6.0
  10. PKG_RELEASE:=2
  11. PYPI_NAME:=schedule
  12. PKG_HASH:=f9fb5181283de4db6e701d476dd01b6a3dd81c38462a54991ddbb9d26db857c9
  13. PKG_MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>
  14. PKG_LICENSE:=MIT
  15. PKG_LICENSE_FILES:=LICENSE.txt
  16. include ../pypi.mk
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../python3-package.mk
  19. define Package/python3-schedule
  20. SECTION:=lang
  21. CATEGORY:=Languages
  22. SUBMENU:=Python
  23. TITLE:=Job scheduling for humans
  24. URL:=https://github.com/dbader/schedule
  25. DEPENDS:=+python3-light +python3-logging
  26. endef
  27. define Package/python3-schedule/description
  28. An in-process scheduler for periodic jobs that uses the builder pattern for configuration.
  29. The Schedule lets you run Python functions (or any other callable)
  30. periodically at predetermined intervals using a simple, human-friendly syntax.
  31. endef
  32. $(eval $(call Py3Package,python3-schedule))
  33. $(eval $(call BuildPackage,python3-schedule))
  34. $(eval $(call BuildPackage,python3-schedule-src))