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 ${python.interpreter} -m unittest discover
''; '';
meta = { meta = with lib; {
description = "Super-fast templating language"; description = "Super-fast templating language";
homepage = "http://www.makotemplates.org"; homepage = "https://www.makotemplates.org/";
license = lib.licenses.mit; changelog = "https://docs.makotemplates.org/en/latest/changelog.html";
platforms = lib.platforms.unix; license = licenses.mit;
maintainers = with lib.maintainers; [ domenkozar ]; platforms = platforms.unix;
maintainers = with maintainers; [ domenkozar ];
}; };
} }