Commit 4bae64e4 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.mdformat-frontmatter: add changelog to meta

parent a4752fe9
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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 ];
  };