python312Packages.html2text: format with nixfmt

This commit is contained in:
Fabian Affolter
2024-05-12 13:19:56 +02:00
parent 9263c48e1b
commit 94e8c64a87
@@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
@@ -20,17 +21,11 @@ buildPythonPackage rec {
hash = "sha256-1CLkTFR+/XQ428WjMF7wliyAG6CB+n8JSsLDdLHPO7I=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"html2text"
];
pythonImportsCheck = [ "html2text" ];
meta = with lib; {
description = "Turn HTML into equivalent Markdown-structured text";