diff --git a/pkgs/development/python-modules/build/default.nix b/pkgs/development/python-modules/build/default.nix index 79944b0dbc2d..5764651403a0 100644 --- a/pkgs/development/python-modules/build/default.nix +++ b/pkgs/development/python-modules/build/default.nix @@ -13,20 +13,21 @@ pytest-xdist, pytestCheckHook, setuptools, + uv, virtualenv, wheel, }: buildPythonPackage rec { pname = "build"; - version = "1.4.2"; + version = "1.4.4"; pyproject = true; src = fetchFromGitHub { owner = "pypa"; repo = "build"; tag = version; - hash = "sha256-wPTiiBaPBy8hsxJHhoeohsqoaMG7VXN5Vv7+PK9ZaO4="; + hash = "sha256-QprU0sXL6FL0rSVJwu8cYpcPlnYKzKAbkyDaTV778js="; }; build-system = [ flit-core ]; @@ -59,6 +60,7 @@ buildPythonPackage rec { pytest-xdist pytestCheckHook setuptools + uv virtualenv wheel ]; @@ -79,8 +81,11 @@ buildPythonPackage rec { "test_output" "test_wheel_metadata" # Tests require network access to run pip install - "test_verbose_output" + "test_logging_output" + "test_pythonpath_does_not_interfere_with_outer_pip" "test_requirement_installation" + "test_verbose_logging_output" + "test_verbose_output" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ # Expects Apple's Python and its quirks