python3Packages.lnkparse3: 1.5.2 -> 1.5.3 (#463637)

This commit is contained in:
Nick Cao
2025-11-21 20:36:40 +00:00
committed by GitHub
@@ -3,23 +3,20 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
pyyaml,
setuptools,
}:
buildPythonPackage rec {
pname = "lnkparse3";
version = "1.5.2";
version = "1.5.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Matmaus";
repo = "LnkParse3";
tag = "v${version}";
hash = "sha256-z+qjPs7gHQMAUlnGLN06xZ0hyrAnBF8i0FbaiEpguNE=";
hash = "sha256-1BjESKJxEO6EOR2/IRR1wxFrqFAYA/DUp9XL00xja8M=";
};
build-system = [ setuptools ];
@@ -33,7 +30,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Windows Shortcut file (LNK) parser";
homepage = "https://github.com/Matmaus/LnkParse3";
changelog = "https://github.com/Matmaus/LnkParse3/blob/${version}/CHANGELOG.md";
changelog = "https://github.com/Matmaus/LnkParse3/blob/${src.tag}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};