From 211ec3abaac1791e8bd01ce491634d7db727d9fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Tue, 14 Jan 2025 15:10:40 +0800 Subject: [PATCH] gnu: python-pytest-vcr: Fix tests. * gnu/packages/python-check.scm (python-pytest-vcr)[native-inputs]: Add python-urllib3. Change-Id: I925816a9113d6d3f6f928e68eb5292e2c7409c7d --- gnu/packages/python-check.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 97668384081947e36db6984d13c524f1a64a3611..aabb939287e89cfca3a5da322be56c5fc0aaffa6 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1306,6 +1306,8 @@ support and @code{subtests} fixture.") (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) (invoke "pytest" "tests/")))))) + (native-inputs + (list python-urllib3)) (propagated-inputs (list python-pytest python-vcrpy)) (home-page "https://github.com/ktosiek/pytest-vcr")