From 64362133de544ac91d3df31b4a997fc23e51a139 Mon Sep 17 00:00:00 2001 From: Hugo Buddelmeijer Date: Mon, 23 Feb 2026 18:04:04 +0100 Subject: [PATCH] gnu: python-virtualenv: Fix build. The test_build_c_ext.py test explicitly checks for >= 3.12 to decide to access the internet. * gnu/packages/python-xyz.scm (python-virtualenv): Fix build. [arguments]<#:test-flags>: Ignore internet-requiring test. Change-Id: I4c48f7820ef222dd7deb334334558850b7c79b04 --- gnu/packages/python-xyz.scm | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a2b3e2f155..d45d8640db 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -40217,17 +40217,19 @@ e.g. filters, callbacks and errbacks can all be promises.") (arguments (list #:test-flags - #~(list "-k" (string-join - (list - ;; These tests require Internet access. - "not test_seed_link_via_app_data" - ;; AssertionError: assert 'python' in ['python3', - ;; 'python3.11']. - ;; - ;; PythonInfo() returns: 'system_executable': - ;; '/gnu/store/...-python-wrapper-3.11.11/bin/python' - "test_fallback_existent_system_executable") - " and not ")))) + #~(list "-k" + (string-join + (list + ;; AssertionError: assert 'python' in ['python3', 'python3.11']. + "not test_seed_link_via_app_data" + ;; + ;; These tests require Internet access. + "test_build_c_ext.py" + ;; + ;; PythonInfo() returns: 'system_executable': + ;; '/gnu/store/...-python-wrapper-3.11.11/bin/python' + "test_fallback_existent_system_executable") + " and not ")))) (native-inputs (list python-flaky python-hatch-vcs