From b172e87e42ea304cb70d7f50e8dda053c5b65cef Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 18 Nov 2024 21:22:04 +0100 Subject: [PATCH] python312Packages.dissect-shellitem: disable Windows-specific tests --- .../python-modules/dissect-shellitem/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/dissect-shellitem/default.nix b/pkgs/development/python-modules/dissect-shellitem/default.nix index e8fbec0f8b13..5f7afb14b9d3 100644 --- a/pkgs/development/python-modules/dissect-shellitem/default.nix +++ b/pkgs/development/python-modules/dissect-shellitem/default.nix @@ -38,12 +38,19 @@ buildPythonPackage rec { pythonImportsCheck = [ "dissect.shellitem" ]; + disabledTests = [ + # Windows-specific tests + "test_xp_remote_lnk_file" + "test_xp_remote_lnk_dir" + "test_win7_local_lnk_dir" + ]; + meta = with lib; { description = "Dissect module implementing a parser for the Shellitem structures"; - mainProgram = "parse-lnk"; homepage = "https://github.com/fox-it/dissect.shellitem"; changelog = "https://github.com/fox-it/dissect.shellitem/releases/tag/${version}"; license = licenses.agpl3Only; maintainers = with maintainers; [ fab ]; + mainProgram = "parse-lnk"; }; }