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 ]; }; }