nixpkgs/pkgs/development/python-modules/recommonmark/default.nix
Jonathan Ringer 81a3d7863d
python3Packages.recommonmark: disable tests
fails against latest sphinx, but errors suggest
session needs to be cleaned
2020-08-14 13:57:14 -07:00

44 lines
1,017 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 ];
};
}