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
915 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=python-cached-property
  3. PKG_VERSION:=1.5.2
  4. PKG_RELEASE:=1
  5. PYPI_NAME:=cached-property
  6. PKG_HASH:=9fa5755838eecbb2d234c3aa390bd80fbd3ac6b6869109bfc1b499f7bd89a130
  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. PYTHON3_PKG_SETUP_ARGS:=
  14. define Package/python3-cached-property
  15. SECTION:=lang
  16. CATEGORY:=Languages
  17. SUBMENU:=Python
  18. TITLE:=A decorator for caching properties in classes
  19. URL:=https://github.com/pydanny/cached-property
  20. DEPENDS:=+python3-light
  21. endef
  22. define Package/python3-cached-property/description
  23. A decorator for caching properties in classes.
  24. endef
  25. $(eval $(call Py3Package,python3-cached-property))
  26. $(eval $(call BuildPackage,python3-cached-property))
  27. $(eval $(call BuildPackage,python3-cached-property-src))