about summary refs log tree commit diff
path: root/pkgs/development/python-modules/Mako
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2020-09-20 16:26:12 -0400
committerJon <jonringer@users.noreply.github.com>2020-09-22 09:06:39 -0700
commit7a8fd8de93b10e31f9653e5b6ae247384f161f2e (patch)
tree3fb8c4d1adac3f7cc6e6712dbdce4f51fba7dd0b /pkgs/development/python-modules/Mako
parent978e419abe45b58486b79dfa2134d476e3d930b4 (diff)
pythonPackages.Mako: cleanup meta
* Update homepage to HTTPS
* Add changelog
Diffstat (limited to 'pkgs/development/python-modules/Mako')
-rw-r--r--pkgs/development/python-modules/Mako/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/Mako/default.nix b/pkgs/development/python-modules/Mako/default.nix
index 375a02968646f..ecf8ae29759b1 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 ];
   };
 }