pypy: 7.3.7 -> 7.3.9

authored by Jörg Thalheim and committed by Frederik Rietdijk ea13f7cd ead10272

+27 -17
+24 -15
pkgs/development/interpreters/python/default.nix
··· 257 257 sourceVersion = { 258 258 major = "7"; 259 259 minor = "3"; 260 - patch = "5"; 260 + patch = "9"; 261 261 }; 262 - sha256 = "sha256-wERP2YcwWMHA2Z4TqTTpIoXLBZksmWi/Ujwyv5vsCp0="; 262 + 263 + sha256 = "sha256-ObCXKVb2VIzlgoAZ264SUDwy1svpGivs+I0+QsxSGXs="; 263 264 pythonVersion = "2.7"; 264 265 db = db.override { dbmSupport = !stdenv.isDarwin; }; 265 266 python = __splicedPackages.python27; ··· 268 269 inherit (darwin.apple_sdk.frameworks) Security; 269 270 }; 270 271 271 - pypy38 = callPackage ./pypy { 272 - self = __splicedPackages.pypy38; 272 + pypy39 = callPackage ./pypy { 273 + self = __splicedPackages.pypy39; 273 274 sourceVersion = { 274 275 major = "7"; 275 276 minor = "3"; 276 - patch = "7"; 277 + patch = "9"; 277 278 }; 278 - sha256 = "sha256-Ia4zn09QFtbKcwAwXz47VUNzg1yzw5qQQf4w5oEcgMY="; 279 - pythonVersion = "3.8"; 279 + 280 + sha256 = "sha256-Krqh6f4ewOIzyfvDd6DI6aBjQICo9PMOtomDAfZhjBI="; 281 + pythonVersion = "3.9"; 280 282 db = db.override { dbmSupport = !stdenv.isDarwin; }; 281 283 python = __splicedPackages.python27; 282 284 inherit passthruFun; 283 285 inherit (darwin) libunwind; 284 286 inherit (darwin.apple_sdk.frameworks) Security; 285 287 }; 286 - pypy37 = __splicedPackages.pypy38.override { 288 + 289 + pypy38 = __splicedPackages.pypy39.override { 290 + self = __splicedPackages.pythonInterpreters.pypy38; 291 + pythonVersion = "3.8"; 292 + sha256 = "sha256-W12dklbxKhKa+DhOL1gb36s7wPu+OgpIDZwdLpVJDrE="; 293 + }; 294 + pypy37 = __splicedPackages.pypy39.override { 287 295 self = __splicedPackages.pythonInterpreters.pypy37; 288 296 pythonVersion = "3.7"; 289 - sha256 = "sha256-LtAqyecQhZxBvILer7CGGXkruaJ+6qFnbHQe3t0hTdc="; 297 + sha256 = "sha256-cEJhY7GU7kYAmYbuptlCYJij/7VS2c29PfqmSkc3P0k="; 290 298 }; 291 299 292 300 pypy27_prebuilt = callPackage ./pypy/prebuilt_2_7.nix { ··· 295 303 sourceVersion = { 296 304 major = "7"; 297 305 minor = "3"; 298 - patch = "8"; 306 + patch = "9"; 299 307 }; 300 - sha256 = "0h493q0lhpz035afi4g09f4mz5a72vqx4sa7qcry5z4zagxq8bhz"; # linux64 308 + 309 + sha256 = "sha256-FyqSiwCWp+ALfVj1I/VzAMNcPef4IkkeKnvIRTdcI/g="; # linux64 301 310 pythonVersion = "2.7"; 302 311 inherit passthruFun; 303 312 }; 304 313 305 - pypy38_prebuilt = callPackage ./pypy/prebuilt.nix { 314 + pypy39_prebuilt = callPackage ./pypy/prebuilt.nix { 306 315 # Not included at top-level 307 316 self = __splicedPackages.pythonInterpreters.pypy38_prebuilt; 308 317 sourceVersion = { 309 318 major = "7"; 310 319 minor = "3"; 311 - patch = "7"; 320 + patch = "9"; 312 321 }; 313 - sha256 = "sha256-Xe43x8PLixYAKPveOlkBxoBD36VFoWeUUCuJfUvEDX4="; # linux64 314 - pythonVersion = "3.8"; 322 + sha256 = "sha256-RoGMs9dLlrNHh1SDQ9Jm4lYrUx3brzMDg7qTD/GTDtU="; # linux64 323 + pythonVersion = "3.9"; 315 324 inherit passthruFun; 316 325 }; 317 326
+3 -2
pkgs/top-level/all-packages.nix
··· 15554 15554 15555 15555 pypy = pypy2; 15556 15556 pypy2 = pypy27; 15557 - pypy3 = pypy38; 15557 + pypy3 = pypy39; 15558 15558 15559 15559 # Python interpreter that is build with all modules, including tkinter. 15560 15560 # These are for compatibility and should not be used inside Nixpkgs. ··· 15600 15600 }; 15601 15601 15602 15602 pythonInterpreters = callPackage ./../development/interpreters/python { }; 15603 - inherit (pythonInterpreters) python27 python37 python38 python39 python310 python311 python3Minimal pypy27 pypy38 pypy37 rustpython; 15603 + inherit (pythonInterpreters) python27 python37 python38 python39 python310 python311 python3Minimal pypy27 pypy39 pypy38 pypy37 rustpython; 15604 15604 15605 15605 # List of extensions with overrides to apply to all Python package sets. 15606 15606 pythonPackagesExtensions = [ ]; ··· 15617 15617 pypy3Packages = pypy3.pkgs; 15618 15618 pypy37Packages = pypy37.pkgs; 15619 15619 pypy38Packages = pypy38.pkgs; 15620 + pypy39Packages = pypy39.pkgs; 15620 15621 15621 15622 py3c = callPackage ../development/libraries/py3c { }; 15622 15623