Merge pull request #151652 from 7c6f434c/pypy37-reinstate

pypy37: reinit
This commit is contained in:
7c6f434c
2021-12-22 07:46:54 +00:00
committed by GitHub
2 changed files with 8 additions and 1 deletions
@@ -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
+3 -1
View File
@@ -13652,7 +13652,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;
@@ -13664,6 +13664,8 @@ with pkgs;
pypy2Packages = pypy2.pkgs;
pypy27Packages = pypy27.pkgs;
pypy3Packages = pypy3.pkgs;
pypy37Packages = pypy37.pkgs;
pypy38Packages = pypy38.pkgs;
py3c = callPackage ../development/libraries/py3c { };