isc-dhcp: Update to 4.4.3-P1
[feed/packages.git] / lang / python / bcrypt / Makefile
1 #
2 # This is free software, licensed under the GNU General Public License v2.
3 # See /LICENSE for more information.
4 #
5
6 include $(TOPDIR)/rules.mk
7
8 PKG_NAME:=bcrypt
9 PKG_VERSION:=3.1.7
10 PKG_RELEASE:=4
11
12 PYPI_NAME:=$(PKG_NAME)
13 PKG_HASH:=0b0069c752ec14172c5f78208f1863d7ad6755a6fae6fe76ec2c80d13be41e42
14
15 PKG_LICENSE:=Apache-2.0
16 PKG_LICENSE_FILES:=LICENSE
17
18 PKG_BUILD_DEPENDS:=libffi/host
19 HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:=cffi # cffi>=1.1
20
21 include ../pypi.mk
22 include $(INCLUDE_DIR)/package.mk
23 include ../python3-package.mk
24
25 define Package/python3-bcrypt
26 SECTION:=lang
27 CATEGORY:=Languages
28 SUBMENU:=Python
29 TITLE:=Modern password hashing
30 URL:=https://github.com/pyca/bcrypt/
31 DEPENDS:= \
32 +python3 \
33 +python3-cffi \
34 +python3-six
35 endef
36
37 define Package/python3-bcrypt/description
38 Good password hashing for your software and your servers.
39 endef
40
41 $(eval $(call Py3Package,python3-bcrypt))
42 $(eval $(call BuildPackage,python3-bcrypt))
43 $(eval $(call BuildPackage,python3-bcrypt-src))