python310Packages.rich: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-03-01 10:54:43 +01:00 committed by Martin Weinelt
parent c1e0ffb09c
commit 4077e26ae6

View File

@ -19,6 +19,7 @@ buildPythonPackage rec {
pname = "rich";
version = "13.3.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
@ -50,6 +51,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal";
homepage = "https://github.com/Textualize/rich";
changelog = "https://github.com/Textualize/rich/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ ris joelkoen ];
};