From f66647830db352eaefc15ad4235406618e5e4726 Mon Sep 17 00:00:00 2001 From: Marvin Preuss Date: Mon, 26 Jan 2026 10:01:34 +0100 Subject: [PATCH] python3Packages.pycdio: disables tests that have problems with python 3.13 (#482857) --- pkgs/development/python-modules/pycdio/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/python-modules/pycdio/default.nix b/pkgs/development/python-modules/pycdio/default.nix index 3217824701b8..e851ba916076 100644 --- a/pkgs/development/python-modules/pycdio/default.nix +++ b/pkgs/development/python-modules/pycdio/default.nix @@ -43,6 +43,14 @@ buildPythonPackage (finalAttrs: { enabledTestPaths = [ "test/test-*.py" ]; + disabledTests = [ + # Test are depending on image files that are not there + "test_fs" + "test_bincue" + "test_read" + "test_cdda" + ]; + passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };