python3Packages.poetry-dynamic-versioning: fix build after last version bump (#211155)

* python3Packages.poetry-dynamic-versioning: fix build after last version bump

* python310Packages.poetry-dynamic-versioning: add changelog to meta

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
Lily Foster
2023-01-18 12:22:12 +01:00
committed by GitHub
co-authored by Fabian Affolter
parent 30b788eb97
commit 4fea5e46aa
@@ -43,6 +43,8 @@ buildPythonPackage rec {
# these require .git, but leaveDotGit = true doesn't help
"test__get_version__defaults"
"test__get_version__format_jinja"
# these expect to be able to run the poetry cli which fails in test hook
"test_integration"
];
pythonImportsCheck = [
@@ -52,6 +54,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Plugin for Poetry to enable dynamic versioning based on VCS tags";
homepage = "https://github.com/mtkennerly/poetry-dynamic-versioning";
changelog = "https://github.com/mtkennerly/poetry-dynamic-versioning/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ cpcloud ];
};