python310Packages.openpyxl: update meta

This commit is contained in:
Fabian Affolter 2023-03-29 00:12:55 +02:00
parent 6e38489a88
commit 938942a806

View file

@ -33,11 +33,11 @@ buildPythonPackage rec {
# https://bitbucket.org/openpyxl/openpyxl/issues/610 # https://bitbucket.org/openpyxl/openpyxl/issues/610
doCheck = false; doCheck = false;
meta = { meta = with lib; {
description = "A Python library to read/write Excel 2007 xlsx/xlsm files"; description = "A Python library to read/write Excel 2007 xlsx/xlsm files";
homepage = "https://openpyxl.readthedocs.org"; homepage = "https://openpyxl.readthedocs.org";
changelog = "https://foss.heptapod.net/openpyxl/openpyxl/-/blob/${version}/doc/changes.rst"; changelog = "https://foss.heptapod.net/openpyxl/openpyxl/-/blob/${version}/doc/changes.rst";
license = lib.licenses.mit; license = licenses.mit;
maintainers = with lib.maintainers; [ lihop ]; maintainers = with maintainers; [ lihop ];
}; };
} }