11 buildPythonPackage rec {
12 pname = "recommonmark";
14 format = "setuptools";
16 src = fetchFromGitHub {
20 sha256 = "0kwm4smxbgq0c0ybkxfvlgrfb3gq9amdw94141jyykk9mmz38379";
23 nativeCheckInputs = [ pytestCheckHook ];
24 propagatedBuildInputs = [ commonmark docutils sphinx ];
26 dontUseSetuptoolsCheck = true;
29 # https://github.com/readthedocs/recommonmark/issues/164
34 doCheck = !isPy3k; # Not yet compatible with latest Sphinx.
35 pythonImportsCheck = [ "recommonmark" ];
38 description = "A docutils-compatibility bridge to CommonMark";
39 homepage = "https://github.com/rtfd/recommonmark";
40 license = lib.licenses.mit;
41 maintainers = with lib.maintainers; [ fridh ];