pypy3: 7.3.5 -> 7.3.7 (#147875)

This adds support for Python 3.8.
https://www.pypy.org/posts/2021/10/pypy-v737-release.html
This commit is contained in:
Sumner Evans 2021-12-05 12:21:35 -07:00 committed by GitHub
parent 429779dea4
commit eec28b8cfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -238,15 +238,15 @@ in {
inherit (darwin.apple_sdk.frameworks) Security;
};
pypy37 = callPackage ./pypy {
self = pypy37;
pypy38 = callPackage ./pypy {
self = pypy38;
sourceVersion = {
major = "7";
minor = "3";
patch = "5";
patch = "7";
};
sha256 = "sha256-2SD+QJqeytnQdKqFaMpfPtNYG+ZvZuXYmIt+xm5tmaI=";
pythonVersion = "3.7";
sha256 = "sha256-Ia4zn09QFtbKcwAwXz47VUNzg1yzw5qQQf4w5oEcgMY=";
pythonVersion = "3.8";
db = db.override { dbmSupport = !stdenv.isDarwin; };
python = python27;
inherit passthruFun;

View File

@ -13501,7 +13501,7 @@ with pkgs;
python3 = python39;
pypy = pypy2;
pypy2 = pypy27;
pypy3 = pypy37;
pypy3 = pypy38;
# Python interpreter that is build with all modules, including tkinter.
# These are for compatibility and should not be used inside Nixpkgs.
@ -13551,7 +13551,7 @@ with pkgs;
python3Packages = python3.pkgs;
pythonInterpreters = callPackage ./../development/interpreters/python { };
inherit (pythonInterpreters) python27 python37 python38 python39 python310 python3Minimal pypy27 pypy37;
inherit (pythonInterpreters) python27 python37 python38 python39 python310 python3Minimal pypy27 pypy38;
# Python package sets.
python27Packages = python27.pkgs;