9 buildPythonPackage rec {
10 pname = "mdx_truly_sane_lists";
13 src = fetchFromGitHub {
15 repo = "mdx_truly_sane_lists";
16 rev = "refs/tags/${version}";
17 hash = "sha256-hPnqF1UA4peW8hzeFiMlsBPfodC1qJXETGoq2yUm7d4=";
20 propagatedBuildInputs = [ markdown ];
22 pythonImportsCheck = [ "mdx_truly_sane_lists" ];
26 ${python.interpreter} mdx_truly_sane_lists/tests.py
31 description = "Extension for Python-Markdown that makes lists truly sane";
33 Features custom indents for nested lists and fix for messy linebreaks and
34 paragraphs between lists.
36 license = licenses.mit;
37 maintainers = with maintainers; [ kaction ];