python312Packages.sphinx-mdinclude: fix build, 0.6.1 -> 0.6.2 (#347002)

This commit is contained in:
Atemu 2024-10-21 15:04:05 +02:00 committed by GitHub
commit fbd386b282
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 4 deletions

View File

@ -10802,6 +10802,12 @@
githubId = 79042825;
name = "Jan Kremer";
};
JulianFP = {
name = "Julian Partanen";
github = "JulianFP";
githubId = 70963316;
keys = [ { fingerprint = "C61D 7747 43DE EF05 4E4A 3AC1 6FE2 79EB 5C9F 3466"; } ];
};
juliendehos = {
email = "dehos@lisic.univ-littoral.fr";
github = "juliendehos";

View File

@ -10,6 +10,7 @@
docutils,
mistune,
pygments,
sphinx,
# tests
pytestCheckHook,
@ -17,13 +18,13 @@
buildPythonPackage rec {
pname = "sphinx-mdinclude";
version = "0.6.1";
version = "0.6.2";
format = "pyproject";
src = fetchPypi {
pname = "sphinx_mdinclude";
inherit version;
hash = "sha256-7OPYEuLVWbTn5H9ntqh7Dipom2svURR5XI7Uf/s5wWk=";
hash = "sha256-RHRi6Cy4vmFASiIEIn+SB2nrkj0vV2COMyXzu4goa0w=";
};
nativeBuildInputs = [ flit-core ];
@ -32,12 +33,12 @@ buildPythonPackage rec {
docutils
mistune
pygments
sphinx
];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
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";
@ -50,6 +51,9 @@ buildPythonPackage rec {
sphinx-mdinclude is a fork of m2r and m2r2, focused only on providing a Sphinx extension.
'';
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
maintainers = with maintainers; [
flokli
JulianFP
];
};
}