pypy: drop pycparser dependency to fix build

This commit is contained in:
Michael Raskin 2024-05-12 16:01:00 +02:00
parent af8b9db5c0
commit be3dadb563

View File

@ -42,7 +42,7 @@ let
};
pname = passthru.executable;
version = with sourceVersion; "${major}.${minor}.${patch}";
pythonForPypy = python.withPackages (ppkgs: [ ppkgs.pycparser ]);
pythonForPypy = python.withPackages (ppkgs: [ ]);
in with passthru; stdenv.mkDerivation rec {
inherit pname version;