Merge pull request #313387 from fabaff/lnkparse3-bump

python312Packages.lnkparse3: 1.4.0 -> 1.5.0
This commit is contained in:
Fabian Affolter
2024-05-21 16:54:32 +02:00
committed by GitHub
@@ -1,14 +1,16 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
pyyaml,
setuptools,
}:
buildPythonPackage rec {
pname = "lnkparse3";
version = "1.4.0";
version = "1.5.0";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -17,20 +19,16 @@ buildPythonPackage rec {
owner = "Matmaus";
repo = "LnkParse3";
rev = "refs/tags/v${version}";
hash = "sha256-aWMkLFbmikdj4mlAPpo0qrxfE8zgRcSV83aiws03XsQ=";
hash = "sha256-oyULNRjC0pcVUOeTjjW3g3mB7KySYcwAS+/KwQEIkK4=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
dependencies = [ pyyaml ];
pythonImportsCheck = [
"LnkParse3"
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "LnkParse3" ];
meta = with lib; {
description = "Windows Shortcut file (LNK) parser";