python311Packages.mdformat-frontmatter: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-11-20 17:19:00 +01:00
parent a4752fe92a
commit 4bae64e420

View File

@ -13,13 +13,13 @@
buildPythonPackage rec {
pname = "mdformat-frontmatter";
version = "2.0.8";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "butler54";
repo = pname;
repo = "mdformat-frontmatter";
rev = "refs/tags/v${version}";
hash = "sha256-2heQw8LL/ILY36oItBeQq33qjVBGT51qGG4CcCEDutA=";
};
@ -44,6 +44,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "mdformat plugin to ensure frontmatter is respected";
homepage = "https://github.com/butler54/mdformat-frontmatter";
changelog = "https://github.com/butler54/mdformat-frontmatter/blob/v{version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ aldoborrero polarmutex ];
};