Commit 9f9610c3 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.lnkparse3: format with nixfmt

parent ccf57ee1
Loading
Loading
Loading
Loading
+12 −19
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, pyyaml
, setuptools
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  pythonOlder,
  pyyaml,
  setuptools,
}:

buildPythonPackage rec {
@@ -21,21 +22,13 @@ buildPythonPackage rec {
    hash = "sha256-oyULNRjC0pcVUOeTjjW3g3mB7KySYcwAS+/KwQEIkK4=";
  };

  nativeBuildInputs = [
    setuptools
  ];
  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [
    pyyaml
  ];
  propagatedBuildInputs = [ pyyaml ];

  nativeCheckInputs = [
    pytestCheckHook
  ];
  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [
    "LnkParse3"
  ];
  pythonImportsCheck = [ "LnkParse3" ];

  meta = with lib; {
    description = "Windows Shortcut file (LNK) parser";