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

pypy37: reinit

authored by

7c6f434c and committed by
GitHub
049e5e93 4af38fce

+8 -1
+5
pkgs/development/interpreters/python/default.nix
··· 253 253 inherit (darwin) libunwind; 254 254 inherit (darwin.apple_sdk.frameworks) Security; 255 255 }; 256 + pypy37 = pypy38.override { 257 + self = pythonInterpreters.pypy37; 258 + pythonVersion = "3.7"; 259 + sha256 = "sha256-LtAqyecQhZxBvILer7CGGXkruaJ+6qFnbHQe3t0hTdc="; 260 + }; 256 261 257 262 pypy27_prebuilt = callPackage ./pypy/prebuilt.nix { 258 263 # Not included at top-level
+3 -1
pkgs/top-level/all-packages.nix
··· 13652 13652 python3Packages = python3.pkgs; 13653 13653 13654 13654 pythonInterpreters = callPackage ./../development/interpreters/python { }; 13655 - inherit (pythonInterpreters) python27 python37 python38 python39 python310 python3Minimal pypy27 pypy38 rustpython; 13655 + inherit (pythonInterpreters) python27 python37 python38 python39 python310 python3Minimal pypy27 pypy38 pypy37 rustpython; 13656 13656 13657 13657 # Python package sets. 13658 13658 python27Packages = python27.pkgs; ··· 13664 13664 pypy2Packages = pypy2.pkgs; 13665 13665 pypy27Packages = pypy27.pkgs; 13666 13666 pypy3Packages = pypy3.pkgs; 13667 + pypy37Packages = pypy37.pkgs; 13668 + pypy38Packages = pypy38.pkgs; 13667 13669 13668 13670 py3c = callPackage ../development/libraries/py3c { }; 13669 13671