2022-11-19T02:36:18 hatch 1.3.1 -> 1.6.3 https://github.com/pypa/hatch/releases 2022-11-19T02:36:21 attrpath: hatch 2022-11-19T02:36:21 Checking auto update branch... 2022-11-19T02:36:24 [version] 2022-11-19T02:36:24 [version] skipping because derivation has updateScript 2022-11-19T02:36:24 [rustCrateVersion] 2022-11-19T02:36:24 [rustCrateVersion] No cargoSha256 found 2022-11-19T02:36:24 [golangModuleVersion] 2022-11-19T02:36:24 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-11-19T02:36:24 [updateScript] 2022-11-19T02:36:27 [updateScript] Success 2022-11-19T02:36:27 [updateScript] this derivation will be built: /nix/store/s59j41qgnxxa42pwsa8kmh6hchqfn1hs-packages.json.drv building '/nix/store/s59j41qgnxxa42pwsa8kmh6hchqfn1hs-packages.json.drv'... Going to be running update for following packages: - hatch-1.3.1 Press Enter key to continue... Running update for: - hatch-1.3.1: UPDATING ... - hatch-1.3.1: DONE. Packages updated! 2022-11-19T02:36:27 2022-11-19T02:36:27 [quotedUrls] 2022-11-19T02:36:27 [quotedUrls] nothing found to replace 2022-11-19T02:36:27 Diff after rewrites: diff --git a/pkgs/development/tools/hatch/default.nix b/pkgs/development/tools/hatch/default.nix index 777028a008f..a795aacf7ad 100644 --- a/pkgs/development/tools/hatch/default.nix +++ b/pkgs/development/tools/hatch/default.nix @@ -7,14 +7,14 @@ python3.pkgs.buildPythonApplication rec { pname = "hatch"; - version = "1.3.1"; + version = "1.11.1"; format = "pyproject"; src = fetchFromGitHub { owner = "pypa"; repo = "hatch"; - rev = "hatch-v${version}"; - sha256 = "sha256-ftT86HX5CVbiHe5yzXT2gNl8Rx+f+fmiAJRnOuDpvYI="; + rev = "refs/tags/hatchling-v${version}"; + sha256 = "sha256-xTJFRbzHdwtzqfMCV0NDf+8Gr3ScHcajvxFvRmFl734="; }; propagatedBuildInputs = with python3.pkgs; [ 2022-11-19T02:38:05 Old version 1.3.1" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitHub , python3 , git }: python3.pkgs.buildPythonApplication rec { pname = "hatch"; version = "1.6.3"; format = "pyproject"; src = fetchFromGitHub { owner = "pypa"; repo = "hatch"; rev = "hatch-v${version}"; hash = "sha256-3nPh6F+TmLoogz9FgaZMub7hPJIzANCY4oWk9Mq22Pc="; }; propagatedBuildInputs = with python3.pkgs; [ click hatchling httpx hyperlink keyring packaging pexpect platformdirs pyperclip rich shellingham tomli-w tomlkit userpath virtualenv ]; checkInputs = with python3.pkgs; [ git pytestCheckHook pytest-mock pytest-xdist ]; preCheck = '' export HOME=$(mktemp -d); ''; disabledTests = [ # AssertionError: assert (1980, 1, 2, 0, 0, 0) == (2020, 2, 2, 0, 0, 0) "test_default" "test_explicit_path" "test_default_auto_detection" "test_editable_default" "test_editable_default_extra_dependencies" "test_editable_default_force_include" "test_editable_default_force_include_option" "test_editable_exact" "test_editable_exact_extra_dependencies" "test_editable_exact_force_include" "test_editable_exact_force_include_option" "test_editable_exact_force_include_build_data_precedence" "test_editable_pth" # AssertionError: assert len(extract_installed_requirements(output.splitlines())) > 0 "test_creation_allow_system_packages" ]; meta = with lib; { description = "Modern, extensible Python project manager"; homepage = "https://hatch.pypa.io/latest/"; changelog = "https://github.com/pypa/hatch/blob/${src.rev}/docs/history.md#hatch"; license = licenses.mit; maintainers = with maintainers; [ onny ]; }; }