We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3e65a5 commit b172e87Copy full SHA for b172e87
pkgs/development/python-modules/dissect-shellitem/default.nix
@@ -38,12 +38,19 @@ buildPythonPackage rec {
38
39
pythonImportsCheck = [ "dissect.shellitem" ];
40
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
+
48
meta = with lib; {
49
description = "Dissect module implementing a parser for the Shellitem structures";
- mainProgram = "parse-lnk";
50
homepage = "https://github.com/fox-it/dissect.shellitem";
51
changelog = "https://github.com/fox-it/dissect.shellitem/releases/tag/${version}";
52
license = licenses.agpl3Only;
53
maintainers = with maintainers; [ fab ];
54
+ mainProgram = "parse-lnk";
55
};
56
}
0 commit comments