iputils: bump to 20240905
[feed/packages.git] / lang / python / python-attrs / Makefile
1 #
2 # Copyright (C) 2016, 2018-2023 Jeffery To
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=python-attrs
11 PKG_VERSION:=23.1.0
12 PKG_RELEASE:=1
13
14 PYPI_NAME:=attrs
15 PKG_HASH:=6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015
16
17 PKG_LICENSE:=MIT
18 PKG_LICENSE_FILES:=LICENSE
19 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
20
21 PKG_BUILD_DEPENDS:=python-hatchling/host python-hatch-vcs/host python-hatch-fancy-pypi-readme/host
22
23 include ../pypi.mk
24 include $(INCLUDE_DIR)/package.mk
25 include ../python3-package.mk
26
27 define Package/python3-attrs
28 SECTION:=lang
29 CATEGORY:=Languages
30 SUBMENU:=Python
31 TITLE:=Classes Without Boilerplate
32 URL:=https://www.attrs.org/
33 DEPENDS:=+python3-light
34 endef
35
36 define Package/python3-attrs/description
37 attrs is an MIT-licensed Python package with class decorators that ease
38 the chores of implementing the most common attribute-related object
39 protocols.
40 endef
41
42 $(eval $(call Py3Package,python3-attrs))
43 $(eval $(call BuildPackage,python3-attrs))
44 $(eval $(call BuildPackage,python3-attrs-src))