Skip to content

Commit b172e87

Browse files
committed
python312Packages.dissect-shellitem: disable Windows-specific tests
1 parent a3e65a5 commit b172e87

File tree

1 file changed

+8
-1
lines changed
  • pkgs/development/python-modules/dissect-shellitem

1 file changed

+8
-1
lines changed

pkgs/development/python-modules/dissect-shellitem/default.nix

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,19 @@ buildPythonPackage rec {
3838

3939
pythonImportsCheck = [ "dissect.shellitem" ];
4040

41+
disabledTests = [
42+
# Windows-specific tests
43+
"test_xp_remote_lnk_file"
44+
"test_xp_remote_lnk_dir"
45+
"test_win7_local_lnk_dir"
46+
];
47+
4148
meta = with lib; {
4249
description = "Dissect module implementing a parser for the Shellitem structures";
43-
mainProgram = "parse-lnk";
4450
homepage = "https://github.com/fox-it/dissect.shellitem";
4551
changelog = "https://github.com/fox-it/dissect.shellitem/releases/tag/${version}";
4652
license = licenses.agpl3Only;
4753
maintainers = with maintainers; [ fab ];
54+
mainProgram = "parse-lnk";
4855
};
4956
}

0 commit comments

Comments
 (0)