13 buildPythonPackage rec {
14 pname = "markdownify";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
21 owner = "matthewwithanm";
22 repo = "python-markdownify";
23 rev = "refs/tags/${version}";
24 hash = "sha256-YJdR1wV72f9/tWQhuhGwScuRcE243fCP+wnYAzBOoV8=";
37 nativeCheckInputs = [ pytestCheckHook ];
39 pythonImportsCheck = [ "markdownify" ];
42 description = "HTML to Markdown converter";
43 homepage = "https://github.com/matthewwithanm/python-markdownify";
44 changelog = "https://github.com/matthewwithanm/python-markdownify/releases/tag/${version}";
45 license = licenses.mit;
46 maintainers = with maintainers; [ McSinyx ];
47 mainProgram = "markdownify";