From 664f1330fbf81f4e1bdcad539a99ce45b07f6bdb Mon Sep 17 00:00:00 2001 From: "Markus S. Wamser" Date: Thu, 9 Jun 2022 00:40:54 +0200 Subject: [PATCH] pypy3Packages.bootstrapped-pip: fix build PyPy3 ignores the local wheel package when pyproject.toml is present. --- pkgs/development/python-modules/bootstrapped-pip/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix index d2cefade9c44..a83cfc02849d 100644 --- a/pkgs/development/python-modules/bootstrapped-pip/default.nix +++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix @@ -55,6 +55,7 @@ stdenv.mkDerivation rec { echo "Building pip wheel..." pushd pip + rm pyproject.toml ${python.pythonForBuild.interpreter} -m pip install --no-build-isolation --no-index --prefix=$out --ignore-installed --no-dependencies --no-cache . popd '';