81a3d7863d
fails against latest sphinx, but errors suggest session needs to be cleaned
44 lines
1017 B
Nix
44 lines
1017 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, CommonMark
|
|
, docutils
|
|
, sphinx
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "recommonmark";
|
|
version = "0.6.0";
|
|
|
|
# PyPI tarball is missing some test files: https://github.com/rtfd/recommonmark/pull/128
|
|
src = fetchFromGitHub {
|
|
owner = "rtfd";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0m6qk17irka448vcz5b39yck1qsq90k98dmkx80mni0w00yq9ggd";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
propagatedBuildInputs = [ CommonMark docutils sphinx ];
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
disabledTests = [
|
|
# https://github.com/readthedocs/recommonmark/issues/164
|
|
"test_lists"
|
|
"test_integration"
|
|
];
|
|
|
|
doCheck = !isPy3k; # Not yet compatible with latest Sphinx.
|
|
pythonImportsCheck = [ "recommonmark" ];
|
|
|
|
meta = {
|
|
description = "A docutils-compatibility bridge to CommonMark";
|
|
homepage = "https://github.com/rtfd/recommonmark";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
};
|
|
}
|