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