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.0 KiB

  1. #
  2. # Copyright (C) 2016-2018 OpenWrt.org
  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-attrs
  9. PKG_VERSION:=21.4.0
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=attrs
  12. PKG_HASH:=626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd
  13. PKG_LICENSE:=MIT
  14. PKG_LICENSE_FILES:=LICENSE
  15. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  16. include ../pypi.mk
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../python3-package.mk
  19. define Package/python3-attrs
  20. SECTION:=lang
  21. CATEGORY:=Languages
  22. SUBMENU:=Python
  23. TITLE:=Classes Without Boilerplate
  24. URL:=https://www.attrs.org/
  25. DEPENDS:=+python3-light
  26. endef
  27. define Package/python3-attrs/description
  28. attrs is an MIT-licensed Python package with class decorators that ease
  29. the chores of implementing the most common attribute-related object
  30. protocols.
  31. endef
  32. $(eval $(call Py3Package,python3-attrs))
  33. $(eval $(call BuildPackage,python3-attrs))
  34. $(eval $(call BuildPackage,python3-attrs-src))