Merge pull request #171254 from r-ryantm/auto-update/python3.10-poetry-dynamic-versioning

python310Packages.poetry-dynamic-versioning: 0.14.1 -> 0.15.0
This commit is contained in:
Ryan Mulligan 2022-05-02 07:44:59 -07:00 committed by GitHub
commit c39350aae3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,18 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, dunamai
, fetchFromGitHub
, jinja2
, markupsafe
, poetry-core
, pytest
, pytestCheckHook
, pythonOlder
, tomlkit
}:
buildPythonPackage rec {
pname = "poetry-dynamic-versioning";
version = "0.14.1";
version = "0.15.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -20,20 +20,24 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "mtkennerly";
repo = pname;
rev = "v${version}";
hash = "sha256-J/93BFyp+XBy9TRAzAM64ZcMurHxcXDTukOGJE5yvBk=";
rev = "refs/tags/v${version}";
hash = "sha256-RHCP5SakizURg5MwD96Bxs/NvoTdPSCKWVYt5m4meLA=";
};
nativeBuildInputs = [ poetry-core ];
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
dunamai
tomlkit
jinja2
markupsafe
tomlkit
];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
disabledTests = [
# these require .git, but leaveDotGit = true doesn't help
@ -41,7 +45,9 @@ buildPythonPackage rec {
"test__get_version__format_jinja"
];
pythonImportsCheck = [ "poetry_dynamic_versioning" ];
pythonImportsCheck = [
"poetry_dynamic_versioning"
];
meta = with lib; {
description = "Plugin for Poetry to enable dynamic versioning based on VCS tags";