From 9462340b68eff078ecd9a35abd5c722400a8c3ed Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Sat, 1 Mar 2025 15:49:21 -0500 Subject: [PATCH] python312Packages.python-debian: disable tests failing on darwin --- pkgs/development/python-modules/python-debian/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/python-debian/default.nix b/pkgs/development/python-modules/python-debian/default.nix index b088ffabc446..c94707bc8a9b 100644 --- a/pkgs/development/python-modules/python-debian/default.nix +++ b/pkgs/development/python-modules/python-debian/default.nix @@ -1,5 +1,6 @@ { lib, + stdenv, buildPythonPackage, pythonOlder, fetchFromGitLab, @@ -37,6 +38,10 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ + "tests/test_debfile.py" + ]; + pythonImportsCheck = [ "debian" ]; meta = {