From 8bdc8b8186f3bb710354b063e4f764a04214c26b Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 25 Apr 2026 01:51:26 +0200 Subject: [PATCH] python3Packages.build: 1.4.2 -> 1.4.4 https://github.com/pypa/build/blob/1.4.4/CHANGELOG.rst --- pkgs/development/python-modules/build/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) 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