hatch: 1.6.3 -> 1.7.0

https://github.com/pypa/hatch/blob/hatch-v1.7.0/docs/history/hatch.md
This commit is contained in:
Martin Weinelt 2023-07-28 02:34:01 +02:00
parent d84e0ddeb6
commit 5cb5c7d9fb

View File

@ -7,12 +7,12 @@
python3.pkgs.buildPythonApplication rec {
pname = "hatch";
version = "1.6.3";
version = "1.7.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-ZQ5nG6MAMY5Jjvk7vjuZsyzhSSB2T7h1P4mZP2Pu15o=";
hash = "sha256-evxwH9WzNoSmZQ4eyriVfhloX4JCQLp0WNys1m+Q+0Y=";
};
propagatedBuildInputs = with python3.pkgs; [
@ -61,8 +61,10 @@ python3.pkgs.buildPythonApplication rec {
"test_editable_pth"
# AssertionError: assert len(extract_installed_requirements(output.splitlines())) > 0
"test_creation_allow_system_packages"
# Formatting changes with pygments 2.14.0
"test_create_necessary_directories"
# tomlkit 0.12 changes
"test_no_strict_naming"
"test_project_location_basic_set_first_project"
"test_project_location_complex_set_first_project"
] ++ lib.optionals stdenv.isDarwin [
# https://github.com/NixOS/nixpkgs/issues/209358
"test_scripts_no_environment"
@ -71,7 +73,7 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
description = "Modern, extensible Python project manager";
homepage = "https://hatch.pypa.io/latest/";
changelog = "https://github.com/pypa/hatch/blob/hatch-v${version}/docs/history.md#hatch";
changelog = "https://github.com/pypa/hatch/blob/hatch-v${version}/docs/history/hatch.md";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};