{ lib, beautifulsoup4, buildPythonPackage, fetchFromGitHub, pytestCheckHook, setuptools, setuptools-scm, six, }: buildPythonPackage rec { pname = "markdownify"; version = "1.2.2"; pyproject = true; src = fetchFromGitHub { owner = "matthewwithanm"; repo = "python-markdownify"; tag = version; hash = "sha256-r6nah7QavrMjIHd5hByhy90OoTDb2iIhFZ+YV0h61fU="; }; build-system = [ setuptools setuptools-scm ]; dependencies = [ beautifulsoup4 six ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "markdownify" ]; meta = { description = "HTML to Markdown converter"; homepage = "https://github.com/matthewwithanm/python-markdownify"; changelog = "https://github.com/matthewwithanm/python-markdownify/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ McSinyx ]; mainProgram = "markdownify"; }; }