From 7a8fd8de93b10e31f9653e5b6ae247384f161f2e Mon Sep 17 00:00:00 2001 From: Drew Risinger Date: Sun, 20 Sep 2020 16:26:12 -0400 Subject: [PATCH] pythonPackages.Mako: cleanup meta * Update homepage to HTTPS * Add changelog --- pkgs/development/python-modules/Mako/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/Mako/default.nix b/pkgs/development/python-modules/Mako/default.nix index 375a0296864..ecf8ae29759 100644 --- a/pkgs/development/python-modules/Mako/default.nix +++ b/pkgs/development/python-modules/Mako/default.nix @@ -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 ]; }; }