From f9edead13e65794d560f788d85f56cbeaca81e88 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 6 Jul 2023 08:42:55 +0200 Subject: [PATCH] python310Packages.returns: add changelog to meta --- pkgs/development/python-modules/returns/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/returns/default.nix b/pkgs/development/python-modules/returns/default.nix index e408efb4d024..0d356de77f79 100644 --- a/pkgs/development/python-modules/returns/default.nix +++ b/pkgs/development/python-modules/returns/default.nix @@ -56,12 +56,15 @@ buildPythonPackage rec { trio ]; - pytestFlagsArray = [ "--ignore=typesafety" ]; + pytestFlagsArray = [ + "--ignore=typesafety" + ]; meta = with lib; { description = "Make your functions return something meaningful, typed, and safe!"; homepage = "https://github.com/dry-python/returns"; + changelog = "https://github.com/dry-python/returns/blob/${version}/CHANGELOG.md"; license = licenses.bsd2; - maintainers = [ maintainers.jessemoore ]; + maintainers = with maintainers; [ jessemoore ]; }; }