python312Packages.markdownify: add changelog to meta

This commit is contained in:
Fabian Affolter 2024-03-27 08:53:59 +01:00 committed by GitHub
parent edaf27c25b
commit a00bc0510d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -21,9 +21,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "HTML to Markdown converter";
mainProgram = "markdownify";
homepage = "https://github.com/matthewwithanm/python-markdownify";
changelog = "https://github.com/matthewwithanm/python-markdownify/releases/tag/${version}";
license = licenses.mit;
maintainers = [ maintainers.McSinyx ];
maintainers = with maintainers; [ McSinyx ];
mainProgram = "markdownify";
};
}