python311Packages.boltons: add changelog to meta

This commit is contained in:
Fabian Affolter
2023-02-19 17:08:47 +01:00
parent fb58837a5e
commit 0e92f9ebce
@@ -17,7 +17,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "mahmoud";
repo = "boltons";
rev = version;
rev = "refs/tags/${version}";
hash = "sha256-8HO7X2PQEbQIQsCa2cMHQI3rlofVT22GYrWNXY34MLk=";
};
@@ -42,7 +42,6 @@ buildPythonPackage rec {
];
meta = with lib; {
homepage = "https://github.com/mahmoud/boltons";
description = "Constructs, recipes, and snippets extending the Python standard library";
longDescription = ''
Boltons is a set of over 200 BSD-licensed, pure-Python utilities
@@ -59,6 +58,8 @@ buildPythonPackage rec {
- A full-featured TracebackInfo type, for representing stack
traces, in tbutils
'';
homepage = "https://github.com/mahmoud/boltons";
changelog = "https://github.com/mahmoud/boltons/blob/${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ twey ];
};