8 buildPythonPackage rec {
11 format = "setuptools";
13 src = fetchFromGitHub {
16 rev = "refs/tags/v${version}";
17 hash = "sha256-xF6z63CjL/qSBQsm/fSTQhwpg9yJU4qrY06cjn1PbCk=";
20 nativeCheckInputs = [ unittestCheckHook ];
22 pythonImportsCheck = [ "mdutils" ];
25 description = "Set of basic tools that can help to create Markdown files";
27 This Python package contains a set of basic tools that can help to create
28 a Markdown file while running a Python code. Thus, if you are executing a
29 Python code and you save the result in a text file, Why not format it? So
30 using files such as Markdown can give a great look to those results. In
31 this way, mdutils will make things easy for creating Markdown files.
33 homepage = "https://github.com/didix21/mdutils";
34 changelog = "https://github.com/didix21/mdutils/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
35 license = licenses.mit;
36 maintainers = with maintainers; [ azahi ];