From 2d7e32b1a581fbb3a2b6256ff09661be36b33131 Mon Sep 17 00:00:00 2001 From: Jan Pavlinec Date: Wed, 5 Aug 2020 16:07:43 +0200 Subject: [PATCH] python-pytest-forked: add new package (dependency for xdist) Signed-off-by: Jan Pavlinec --- lang/python/python-pytest-forked/Makefile | 43 +++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 lang/python/python-pytest-forked/Makefile diff --git a/lang/python/python-pytest-forked/Makefile b/lang/python/python-pytest-forked/Makefile new file mode 100644 index 000000000..bb50042f7 --- /dev/null +++ b/lang/python/python-pytest-forked/Makefile @@ -0,0 +1,43 @@ +# +# Copyright (C) 2020 CZ.NIC, z. s. p. o. (https://www.nic.cz/) +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=python-pytest-forked +PKG_VERSION:=1.3.0 +PKG_RELEASE:=1 + +PYPI_NAME:=pytest-forked +PKG_HASH:=6aa9ac7e00ad1a539c41bec6d21011332de671e938c7637378ec9710204e37ca + +PKG_MAINTAINER:=Jan Pavlinec +PKG_LICENSE:=MIT +PKG_LICENSE_FILES:=LICENSE + +PKG_BUILD_PARALLEL:=0 +HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:=setuptools-scm + +include ../pypi.mk +include $(INCLUDE_DIR)/package.mk +include ../python3-package.mk + +define Package/python3-pytest-forked + SUBMENU:=Python + SECTION:=lang + CATEGORY:=Languages + TITLE:=Runs tests in isolated forked subprocesses + URL:=https://github.com/pytest-dev/pytest-forked + DEPENDS:= +python3-light +python3-pytest +python3-py +endef + +define Package/python3-pytest-forked/description + Pytest plugin which enables to run tests in isolated forked subprocesses +endef + +$(eval $(call Py3Package,python3-pytest-forked)) +$(eval $(call BuildPackage,python3-pytest-forked)) +$(eval $(call BuildPackage,python3-pytest-forked-src))