python311Packages.sphinx-mdinclude: mark broken
https://github.com/omnilib/sphinx-mdinclude/issues/22
This commit is contained in:
@@ -1,11 +1,17 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchpatch
|
||||
, fetchPypi
|
||||
|
||||
# build-system
|
||||
, flit-core
|
||||
|
||||
# dependencies
|
||||
, docutils
|
||||
, mistune
|
||||
, pygments
|
||||
|
||||
# tests
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@@ -19,13 +25,24 @@ buildPythonPackage rec {
|
||||
hash = "sha256-KZjj0YswIsmYPRtyGR/jfiX/zNVBZcvjrLIszu3ZGvQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ flit-core ];
|
||||
propagatedBuildInputs = [ mistune docutils ];
|
||||
nativeBuildInputs = [
|
||||
flit-core
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pygments ];
|
||||
propagatedBuildInputs = [
|
||||
docutils
|
||||
mistune
|
||||
pygments
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/miyakogi/m2r";
|
||||
broken = true; # https://github.com/omnilib/sphinx-mdinclude/issues/22
|
||||
homepage = "https://github.com/omnilib/sphinx-mdinclude";
|
||||
changelog = "https://github.com/omnilib/sphinx-mdinclude/blob/v${version}/CHANGELOG.md";
|
||||
description = "Sphinx extension for including or writing pages in Markdown format.";
|
||||
longDescription = ''
|
||||
A simple Sphinx extension that enables including Markdown documents from within
|
||||
|
||||
Reference in New Issue
Block a user