11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-oyULNRjC0pcVUOeTjjW3g3mB7KySYcwAS+/KwQEIkK4=";
25 build-system = [ setuptools ];
27 dependencies = [ pyyaml ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "LnkParse3" ];
34 description = "Windows Shortcut file (LNK) parser";
35 homepage = "https://github.com/Matmaus/LnkParse3";
36 changelog = "https://github.com/Matmaus/LnkParse3/blob/${version}/CHANGELOG.md";
37 license = licenses.mit;
38 maintainers = with maintainers; [ fab ];