python311Packages.poetry-dynamic-versioning 1.0.1 -> 1.2.0 https://repology.org/project/python:poetry-dynamic-versioning/versions attrpath: python311Packages.poetry-dynamic-versioning Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.11-poetry-dynamic-versioning-1.0.1 Press Enter key to continue... Running update for: - python3.11-poetry-dynamic-versioning-1.0.1: UPDATING ... - python3.11-poetry-dynamic-versioning-1.0.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/poetry-dynamic-versioning/default.nix b/pkgs/development/python-modules/poetry-dynamic-versioning/default.nix index 9c6440cd4c32..052cb9c4d7d6 100644 --- a/pkgs/development/python-modules/poetry-dynamic-versioning/default.nix +++ b/pkgs/development/python-modules/poetry-dynamic-versioning/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "poetry-dynamic-versioning"; - version = "1.0.1"; + version = "1.2.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "mtkennerly"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-BGAo3c0TzyhIiDtZjoEP+Eeu51WJB3Wg71poFMWJ+VM="; + hash = "sha256-qkRnlLLzbYf7C2VjPDjYfllej8an4WftNahPLz/Wkxw="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.0.1" not present in staging derivation file with contents: { lib , buildPythonPackage , dunamai , fetchFromGitHub , jinja2 , poetry-core , poetry , pytestCheckHook , pythonOlder , tomlkit }: buildPythonPackage rec { pname = "poetry-dynamic-versioning"; version = "1.2.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "mtkennerly"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-qkRnlLLzbYf7C2VjPDjYfllej8an4WftNahPLz/Wkxw="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ dunamai jinja2 tomlkit ]; nativeCheckInputs = [ pytestCheckHook poetry ]; # virtualenv: error: argument dest: the destination . is not write-able at / doCheck = false; disabledTests = [ # 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 = [ "poetry_dynamic_versioning" ]; setupHook = ./setup-hook.sh; 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 ]; }; }