From b0de0d81af996901aecbc6a6d3492d32ab4243c5 Mon Sep 17 00:00:00 2001 From: kurogeek Date: Tue, 25 Aug 2026 12:41:37 +0700 Subject: [PATCH] python3Packages.python-youtube: skip failing tests --- pkgs/development/python-modules/python-youtube/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/python-youtube/default.nix b/pkgs/development/python-modules/python-youtube/default.nix index 2f5c72a2185b..5bab4a15a1a0 100644 --- a/pkgs/development/python-modules/python-youtube/default.nix +++ b/pkgs/development/python-modules/python-youtube/default.nix @@ -45,6 +45,11 @@ buildPythonPackage rec { pytest-cov-stub ]; + disabledTests = [ + # This test try to make request to the internet + "test_parse_response" + ]; + meta = { description = "Simple Python wrapper around for YouTube Data API"; homepage = "https://github.com/sns-sdks/python-youtube";