pythonInterpreters.pypy39_prebuilt: remove global with lib

This commit is contained in:
Thiago Kenji Okada 2023-01-08 13:01:39 +00:00
parent eddcc1c01c
commit c04fc21156

View file

@ -26,8 +26,6 @@
# This version of PyPy is primarily added to speed-up translation of
# our PyPy source build when developing that expression.
with lib;
let
isPy3k = majorVersion == "3";
passthru = passthruFun rec {
@ -138,12 +136,12 @@ in with passthru; stdenv.mkDerivation {
"ssl"
"sys"
"curses"
] ++ optionals (!isPy3k) [
] ++ lib.optionals (!isPy3k) [
"Tkinter"
] ++ optionals isPy3k [
] ++ lib.optionals isPy3k [
"tkinter"
];
imports = concatMapStringsSep "; " (x: "import ${x}") modules;
imports = lib.concatMapStringsSep "; " (x: "import ${x}") modules;
in ''
echo "Testing whether we can import modules"
$out/bin/${executable} -c '${imports}'