python310Packages.pytaglib: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-03-28 08:37:32 +02:00 committed by GitHub
parent 45615f788d
commit c26e9c8ee2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ buildPythonPackage rec {
owner = "supermihi";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-CEpyRxC9d7EuxupMQaX7WUCZ7lhyE6LhQY7Koe0NJ1A=";
hash = "sha256-CEpyRxC9d7EuxupMQaX7WUCZ7lhyE6LhQY7Koe0NJ1A=";
};
buildInputs = [
@ -26,11 +26,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "taglib" ];
pythonImportsCheck = [
"taglib"
];
meta = with lib; {
description = "Python bindings for the Taglib audio metadata library";
homepage = "https://github.com/supermihi/pytaglib";
changelog = "https://github.com/supermihi/pytaglib/blob/v${version}/CHANGELOG.md";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ mrkkrp ];
};