pypy3Packages.bootstrapped-pip: fix build

PyPy3 ignores the local wheel package when pyproject.toml is present.
This commit is contained in:
Markus S. Wamser
2023-03-03 23:56:30 +01:00
committed by Martin Weinelt
parent 32283aa1de
commit 664f1330fb
@@ -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
'';