python310Packages.dunamai: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-02-21 13:28:41 +01:00 committed by GitHub
parent b98dcec97f
commit 78232c4e03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "mtkennerly"; owner = "mtkennerly";
repo = "dunamai"; repo = "dunamai";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
sha256 = "sha256-pPUn+1rv76N/7WVDyWJLPVMweJ1Qbx6/P4zIKU06hSs="; hash = "sha256-pPUn+1rv76N/7WVDyWJLPVMweJ1Qbx6/P4zIKU06hSs=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -49,11 +49,14 @@ buildPythonPackage rec {
setuptools setuptools
]; ];
pythonImportsCheck = [ "dunamai" ]; pythonImportsCheck = [
"dunamai"
];
meta = with lib; { meta = with lib; {
description = "Dynamic version generation"; description = "Dynamic version generation";
homepage = "https://github.com/mtkennerly/dunamai"; homepage = "https://github.com/mtkennerly/dunamai";
changelog = "https://github.com/mtkennerly/dunamai/blob/v${version}/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ jmgilman ]; maintainers = with maintainers; [ jmgilman ];
}; };