python3Packages.mdformat-front-matters: init at 2.0.0

This commit is contained in:
Gaetan Lepage
2026-01-25 01:08:34 +00:00
parent 4e9c0c4f3f
commit ca0b62810c
2 changed files with 64 additions and 0 deletions
@@ -0,0 +1,62 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
uv-build,
# dependencies
mdformat,
mdit-py-plugins,
ruamel-yaml,
toml,
# tests
pytestCheckHook,
typing-extensions,
}:
buildPythonPackage (finalAttrs: {
pname = "mdformat-front-matters";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "kyleking";
repo = "mdformat-front-matters";
tag = "v${finalAttrs.version}";
hash = "sha256-nfthUgOmKI57d+xLMmzveYPugzvvwkIzA//+CgvJGRw=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "uv_build>=0.9.10" "uv_build"
'';
build-system = [
uv-build
];
dependencies = [
mdformat
mdit-py-plugins
ruamel-yaml
toml
];
pythonImportsCheck = [ "mdformat_front_matters" ];
nativeCheckInputs = [
pytestCheckHook
typing-extensions
];
meta = {
description = "mdformat plugin to format YAML, TOML, or JSON front matter";
homepage = "https://github.com/kyleking/mdformat-front-matters";
changelog = "https://github.com/KyleKing/mdformat-front-matters/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
})
+2
View File
@@ -9461,6 +9461,8 @@ self: super: with self; {
mdformat-footnote = callPackage ../development/python-modules/mdformat-footnote { };
mdformat-front-matters = callPackage ../development/python-modules/mdformat-front-matters { };
mdformat-frontmatter = callPackage ../development/python-modules/mdformat-frontmatter { };
mdformat-gfm = callPackage ../development/python-modules/mdformat-gfm { };