pythonPackages.Mako: cleanup meta

* Update homepage to HTTPS
* Add changelog
This commit is contained in:
Drew Risinger 2020-09-20 16:26:12 -04:00 committed by Jon
parent 978e419abe
commit 7a8fd8de93

View file

@ -25,11 +25,12 @@ buildPythonPackage rec {
${python.interpreter} -m unittest discover
'';
meta = {
meta = with lib; {
description = "Super-fast templating language";
homepage = "http://www.makotemplates.org";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ domenkozar ];
homepage = "https://www.makotemplates.org/";
changelog = "https://docs.makotemplates.org/en/latest/changelog.html";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ domenkozar ];
};
}