From 10549898743de632c6947eba7562d00a98c2669b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 24 Jun 2023 20:34:48 +0200 Subject: [PATCH] python310Packages.typepy: add changelog to meta --- pkgs/development/python-modules/typepy/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/typepy/default.nix b/pkgs/development/python-modules/typepy/default.nix index 2b3b70c8d6bf..8cb1970f0197 100644 --- a/pkgs/development/python-modules/typepy/default.nix +++ b/pkgs/development/python-modules/typepy/default.nix @@ -1,6 +1,6 @@ -{ buildPythonPackage +{ lib +, buildPythonPackage , fetchFromGitHub -, lib , mbstrdecoder , python-dateutil , pytz @@ -26,9 +26,10 @@ buildPythonPackage rec { checkInputs = [ tcolorpy ]; meta = with lib; { + description = "Library for variable type checker/validator/converter at a run time"; homepage = "https://github.com/thombashi/typepy"; - description = "A library for variable type checker/validator/converter at a run time"; - maintainers = with maintainers; [ genericnerdyusername ]; + changelog = "https://github.com/thombashi/typepy/releases/tag/v${version}"; license = licenses.mit; + maintainers = with maintainers; [ genericnerdyusername ]; }; }