Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-02-20 12:19:39 +00:00
committed by GitHub
10 changed files with 90 additions and 42 deletions

View File

@@ -1,4 +1,5 @@
{ stdenv
{ lib
, stdenv
, fetchurl
, python-setup-hook
, self
@@ -31,9 +32,15 @@ let
implementation = "pypy";
libPrefix = "pypy${pythonVersion}";
executable = "pypy${if isPy3k then "3" else ""}";
pythonForBuild = self; # Not possible to cross-compile with.
sitePackages = "site-packages";
hasDistutilsCxxPatch = false;
# Not possible to cross-compile with.
pythonOnBuildForBuild = throw "${pname} does not support cross compilation";
pythonOnBuildForHost = self;
pythonOnBuildForTarget = throw "${pname} does not support cross compilation";
pythonOnHostForHost = throw "${pname} does not support cross compilation";
pythonOnTargetForTarget = throw "${pname} does not support cross compilation";
};
pname = "${passthru.executable}_prebuilt";
version = with sourceVersion; "${major}.${minor}.${patch}";