pypy3Packages.bootstrapped-pip: fix build

PyPy3 ignores the local wheel package when pyproject.toml is present.
This commit is contained in:
Markus S. Wamser 2022-06-09 00:40:54 +02:00 committed by Martin Weinelt
parent 32283aa1de
commit 664f1330fb

View File

@ -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
'';