From dd94c734bf9f9312e3913ca6bccae21ddb99a721 Mon Sep 17 00:00:00 2001 From: JulianFP Date: Mon, 7 Oct 2024 05:02:45 +0200 Subject: [PATCH 1/3] maintainers: add JulianFP --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 60ab3903eb82..d3cc24d10cad 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -10682,6 +10682,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"; From 1070635c99b31871a60f367186a32ca28d71e09e Mon Sep 17 00:00:00 2001 From: JulianFP Date: Mon, 7 Oct 2024 05:04:54 +0200 Subject: [PATCH 2/3] python312Packages.sphinx-mdinclude: fix build --- .../python-modules/sphinx-mdinclude/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/sphinx-mdinclude/default.nix b/pkgs/development/python-modules/sphinx-mdinclude/default.nix index f938f267eb65..397a3270582d 100644 --- a/pkgs/development/python-modules/sphinx-mdinclude/default.nix +++ b/pkgs/development/python-modules/sphinx-mdinclude/default.nix @@ -10,6 +10,7 @@ docutils, mistune, pygments, + sphinx, # tests pytestCheckHook, @@ -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 + ]; }; } From 6ffc520d0d6238340e097753b7f83273689c1430 Mon Sep 17 00:00:00 2001 From: JulianFP Date: Mon, 7 Oct 2024 05:05:38 +0200 Subject: [PATCH 3/3] python312Packages.sphinx-mdinclude: 0.6.1 -> 0.6.2 --- pkgs/development/python-modules/sphinx-mdinclude/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/sphinx-mdinclude/default.nix b/pkgs/development/python-modules/sphinx-mdinclude/default.nix index 397a3270582d..85c30a91a48c 100644 --- a/pkgs/development/python-modules/sphinx-mdinclude/default.nix +++ b/pkgs/development/python-modules/sphinx-mdinclude/default.nix @@ -18,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 ];