13 buildPythonPackage rec {
14 pname = "poetry-dynamic-versioning";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
23 rev = "refs/tags/v${version}";
24 hash = "sha256-UO2D80cZurfPCtDXAEQ4nOJdhNtIghLtZN7gL+9xbGc=";
31 propagatedBuildInputs = [
43 # these require .git, but leaveDotGit = true doesn't help
44 "test__get_version__defaults"
45 "test__get_version__format_jinja"
48 pythonImportsCheck = [
49 "poetry_dynamic_versioning"
53 description = "Plugin for Poetry to enable dynamic versioning based on VCS tags";
54 homepage = "https://github.com/mtkennerly/poetry-dynamic-versioning";
55 license = licenses.mit;
56 maintainers = with maintainers; [ cpcloud ];