pythonInterpreters.pypy39_prebuilt: fix eval (#277543)

Without the change the eval fails as:

    $ nix build --no-link -f. pythonInterpreters.pypy39_prebuilt.buildEnv
    error:
       error: attribute 'pypy38_prebuilt' missing
          208|     # Not included at top-level
          209|     self = __splicedPackages.pythonInterpreters.pypy38_prebuilt;
             |            ^
          210|     sourceVersion = {
       Did you mean one of pypy39_prebuilt or pypy27_prebuilt?
This commit is contained in:
Sergei Trofimovich 2024-01-02 16:20:05 +00:00 committed by GitHub
parent a83f8e2592
commit 29a2c82603
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -206,7 +206,7 @@ in {
pypy39_prebuilt = callPackage ./pypy/prebuilt.nix {
# Not included at top-level
self = __splicedPackages.pythonInterpreters.pypy38_prebuilt;
self = __splicedPackages.pythonInterpreters.pypy39_prebuilt;
sourceVersion = {
major = "7";
minor = "3";