From 19175e62a2e94ad82d645ac0ecdf36ad8779a6ea Mon Sep 17 00:00:00 2001 From: John Date: Thu, 13 Aug 2020 20:08:20 +0200 Subject: [PATCH] python3-pytest: add python3-setuptools runtime dep Without this, pytest fails with missing a module Traceback (most recent call last): File "/usr/bin/py.test", line 6, in from pkg_resources import load_entry_point ModuleNotFoundError: No module named 'pkg_resources' --- srcpkgs/python3-pytest/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pytest/template b/srcpkgs/python3-pytest/template index ef970b3c2f..3df0405f1e 100644 --- a/srcpkgs/python3-pytest/template +++ b/srcpkgs/python3-pytest/template @@ -1,13 +1,13 @@ # Template file for 'python3-pytest' pkgname=python3-pytest version=5.3.5 -revision=1 +revision=2 archs=noarch wrksrc="pytest-${version}" build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-py python3-packaging python3-attrs python3-more-itertools - python3-atomicwrites python3-pluggy python3-wcwidth" + python3-atomicwrites python3-pluggy python3-wcwidth python3-setuptools" checkdepends="$depends python3-argcomplete python3-hypothesis python3-mock python3-nose python3-requests python3-parsing python3-xmlschema" short_desc="Simple powerful testing with Python 3"