12 buildPythonPackage rec {
13 pname = "recommonmark";
15 format = "setuptools";
17 src = fetchFromGitHub {
21 sha256 = "0kwm4smxbgq0c0ybkxfvlgrfb3gq9amdw94141jyykk9mmz38379";
24 nativeCheckInputs = [ pytestCheckHook ];
25 propagatedBuildInputs = [
31 dontUseSetuptoolsCheck = true;
34 # https://github.com/readthedocs/recommonmark/issues/164
39 doCheck = !isPy3k; # Not yet compatible with latest Sphinx.
40 pythonImportsCheck = [ "recommonmark" ];
43 description = "Docutils-compatibility bridge to CommonMark";
44 homepage = "https://github.com/rtfd/recommonmark";
45 license = lib.licenses.mit;