From 92e9b7e5eb616b51f99256bbb30a6cef5567fce7 Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Tue, 12 May 2026 01:51:00 +0300 Subject: [PATCH] python-marshmallow: add new package A lightweight library for converting complex datatypes to and from native Python datatypes. Signed-off-by: George Sapkin --- lang/python/python-marshmallow/Makefile | 48 +++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 lang/python/python-marshmallow/Makefile diff --git a/lang/python/python-marshmallow/Makefile b/lang/python/python-marshmallow/Makefile new file mode 100644 index 0000000000..9b9f6de3f7 --- /dev/null +++ b/lang/python/python-marshmallow/Makefile @@ -0,0 +1,48 @@ +# SPDX-License-Identifier: GPL-2.0-only + +include $(TOPDIR)/rules.mk + +PKG_NAME:=python-marshmallow +PKG_VERSION:=4.3.0 +PKG_RELEASE:=1 + +PYPI_NAME:=marshmallow +PKG_HASH:=fb43c53b3fe240b8f6af37223d6ef1636f927ad9bea8ab323afad95dff090880 + +PKG_MAINTAINER:=Alexandru Ardelean +PKG_LICENSE:=MIT +PKG_LICENSE_FILES:=LICENSE + +HOST_BUILD_DEPENDS:= \ + python3/host \ + python-packaging/host + +include ../pypi.mk +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/host-build.mk +include ../python3-package.mk +include ../python3-host-build.mk + +define Package/python3-marshmallow + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=Marshmallow + URL:=https://github.com/marshmallow-code/marshmallow + DEPENDS:= \ + +python3-decimal \ + +python3-light \ + +python3-packaging \ + +python3-urllib \ + +python3-uuid +endef + +define Package/python3-marshmallow/description + A lightweight library for converting complex datatypes to and from native + Python datatypes. +endef + +$(eval $(call Py3Package,python3-marshmallow)) +$(eval $(call BuildPackage,python3-marshmallow)) +$(eval $(call BuildPackage,python3-marshmallow-src)) +$(eval $(call HostBuild))