1e6b6542d73b7700b46db67571f648f4250df1de
[feed/packages.git] / lang / python / python-click / Makefile
1 # This is free software, licensed under the GNU General Public License v2.
2 # See /LICENSE for more information.
3 #
4
5 include $(TOPDIR)/rules.mk
6
7 PKG_NAME:=python-click
8 PKG_VERSION:=8.1.6
9 PKG_RELEASE:=1
10
11 PYPI_NAME:=click
12 PKG_HASH:=48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd
13
14 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
15 PKG_LICENSE:=BSD-3-Clause
16 PKG_LICENSE_FILES:=LICENSE.rst
17
18 include ../pypi.mk
19 include $(INCLUDE_DIR)/package.mk
20 include ../python3-package.mk
21
22 define Package/python3-click
23 SECTION:=lang
24 CATEGORY:=Languages
25 SUBMENU:=Python
26 TITLE:=Composable command line interface toolkit
27 URL:=https://palletsprojects.com/p/click/
28 DEPENDS:=+python3-light +python3-urllib +python3-uuid
29 endef
30
31 define Package/python3-click/description
32 Click is a Python package for creating beautiful command line interfaces
33 in a composable way with as little code as necessary. It's the "Command
34 Line Interface Creation Kit". It's highly configurable but comes with
35 sensible defaults out of the box.
36 endef
37
38 $(eval $(call Py3Package,python3-click))
39 $(eval $(call BuildPackage,python3-click))
40 $(eval $(call BuildPackage,python3-click-src))