lol

hatch: 1.6.3 -> 1.7.0

https://github.com/pypa/hatch/blob/hatch-v1.7.0/docs/history/hatch.md

+7 -5
+7 -5
pkgs/development/tools/hatch/default.nix
··· 7 7 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "hatch"; 10 - version = "1.6.3"; 10 + version = "1.7.0"; 11 11 format = "pyproject"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - hash = "sha256-ZQ5nG6MAMY5Jjvk7vjuZsyzhSSB2T7h1P4mZP2Pu15o="; 15 + hash = "sha256-evxwH9WzNoSmZQ4eyriVfhloX4JCQLp0WNys1m+Q+0Y="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [ ··· 61 61 "test_editable_pth" 62 62 # AssertionError: assert len(extract_installed_requirements(output.splitlines())) > 0 63 63 "test_creation_allow_system_packages" 64 - # Formatting changes with pygments 2.14.0 65 - "test_create_necessary_directories" 64 + # tomlkit 0.12 changes 65 + "test_no_strict_naming" 66 + "test_project_location_basic_set_first_project" 67 + "test_project_location_complex_set_first_project" 66 68 ] ++ lib.optionals stdenv.isDarwin [ 67 69 # https://github.com/NixOS/nixpkgs/issues/209358 68 70 "test_scripts_no_environment" ··· 71 73 meta = with lib; { 72 74 description = "Modern, extensible Python project manager"; 73 75 homepage = "https://hatch.pypa.io/latest/"; 74 - changelog = "https://github.com/pypa/hatch/blob/hatch-v${version}/docs/history.md#hatch"; 76 + changelog = "https://github.com/pypa/hatch/blob/hatch-v${version}/docs/history/hatch.md"; 75 77 license = licenses.mit; 76 78 maintainers = with maintainers; [ onny ]; 77 79 };