11 buildPythonPackage rec {
12 pname = "recommonmark";
15 src = fetchFromGitHub {
19 sha256 = "0kwm4smxbgq0c0ybkxfvlgrfb3gq9amdw94141jyykk9mmz38379";
22 checkInputs = [ pytestCheckHook ];
23 propagatedBuildInputs = [ CommonMark docutils sphinx ];
25 dontUseSetuptoolsCheck = true;
28 # https://github.com/readthedocs/recommonmark/issues/164
33 doCheck = !isPy3k; # Not yet compatible with latest Sphinx.
34 pythonImportsCheck = [ "recommonmark" ];
37 description = "A docutils-compatibility bridge to CommonMark";
38 homepage = "https://github.com/rtfd/recommonmark";
39 license = lib.licenses.mit;
40 maintainers = with lib.maintainers; [ fridh ];