pypy37: reinit

This commit is contained in:
Michael Raskin 2021-12-22 00:45:39 +01:00
parent 1de43adf31
commit d2204261a3
2 changed files with 8 additions and 1 deletions

View file

@ -253,6 +253,11 @@ in {
inherit (darwin) libunwind;
inherit (darwin.apple_sdk.frameworks) Security;
};
pypy37 = pypy38.override {
self = pythonInterpreters.pypy37;
pythonVersion = "3.7";
sha256 = "sha256-LtAqyecQhZxBvILer7CGGXkruaJ+6qFnbHQe3t0hTdc=";
};
pypy27_prebuilt = callPackage ./pypy/prebuilt.nix {
# Not included at top-level

View file

@ -13650,7 +13650,7 @@ with pkgs;
python3Packages = python3.pkgs;
pythonInterpreters = callPackage ./../development/interpreters/python { };
inherit (pythonInterpreters) python27 python37 python38 python39 python310 python3Minimal pypy27 pypy38 rustpython;
inherit (pythonInterpreters) python27 python37 python38 python39 python310 python3Minimal pypy27 pypy38 pypy37 rustpython;
# Python package sets.
python27Packages = python27.pkgs;
@ -13662,6 +13662,8 @@ with pkgs;
pypy2Packages = pypy2.pkgs;
pypy27Packages = pypy27.pkgs;
pypy3Packages = pypy3.pkgs;
pypy37Packages = pypy37.pkgs;
pypy38Packages = pypy38.pkgs;
py3c = callPackage ../development/libraries/py3c { };