python312Packages.gto 1.6.2 -> 1.7.0 https://github.com/iterative/gto/releases attrpath: python312Packages.gto 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] this derivation will be built: /nix/store/l84k5qsdxxn0s73z4bw846vd0bg8anv1-packages.json.drv building '/nix/store/l84k5qsdxxn0s73z4bw846vd0bg8anv1-packages.json.drv'... Going to be running update for following packages: - python3.12-gto-1.6.2 Press Enter key to continue... Running update for: - python3.12-gto-1.6.2: UPDATING ... - python3.12-gto-1.6.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/gto/default.nix b/pkgs/development/python-modules/gto/default.nix index 80f41bb4d683..802716229744 100644 --- a/pkgs/development/python-modules/gto/default.nix +++ b/pkgs/development/python-modules/gto/default.nix @@ -23,7 +23,7 @@ buildPythonPackage rec { pname = "gto"; - version = "1.6.2"; + version = "1.7.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -32,7 +32,7 @@ buildPythonPackage rec { owner = "iterative"; repo = "gto"; rev = "refs/tags/${version}"; - hash = "sha256-1+Owhp2otGC/FIdsSz+4vn0sZR696+zOMGNDvjM6KH8="; + hash = "sha256-dovCItMhPKRSPfbTzM5dbz8hdygqrLdUi6gS4+G10ks="; }; postPatch = '' No auto update branch exists Old version 1.6.2" not present in staging derivation file with contents: { lib , buildPythonPackage , entrypoints , fastentrypoints , fetchFromGitHub , freezegun , funcy , git , pydantic , pytest-mock , pytest-test-utils , pytestCheckHook , pythonOlder , rich , ruamel-yaml , scmrepo , semver , setuptools , setuptools-scm , tabulate , typer }: buildPythonPackage rec { pname = "gto"; version = "1.7.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "iterative"; repo = "gto"; rev = "refs/tags/${version}"; hash = "sha256-dovCItMhPKRSPfbTzM5dbz8hdygqrLdUi6gS4+G10ks="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace ', "setuptools_scm_git_archive==1.4.1"' "" substituteInPlace setup.cfg \ --replace " --cov=gto --cov-report=term-missing --cov-report=xml" "" ''; nativeBuildInputs = [ fastentrypoints setuptools setuptools-scm ]; propagatedBuildInputs = [ entrypoints funcy pydantic rich ruamel-yaml scmrepo semver tabulate typer ]; nativeCheckInputs = [ freezegun git pytest-mock pytest-test-utils pytestCheckHook ]; preCheck = '' export HOME=$(mktemp -d) git config --global user.email "nobody@example.com" git config --global user.name "Nobody" ''; disabledTests = [ # Tests want to with a remote repo "remote_repo" "remote_git_repo" "test_action_doesnt_push_even_if_repo_has_remotes_set" ]; pythonImportsCheck = [ "gto" ]; meta = with lib; { description = "Module for Git Tag Operations"; homepage = "https://github.com/iterative/gto"; changelog = "https://github.com/iterative/gto/releases/tag/${version}"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }