a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
25 lines
429 B
Nix
25 lines
429 B
Nix
{ buildPythonPackage
|
|
, wasmer
|
|
, pytestCheckHook
|
|
, wasmer-compiler-cranelift
|
|
, wasmer-compiler-llvm
|
|
, wasmer-compiler-singlepass
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wasmer-tests";
|
|
inherit (wasmer) version;
|
|
|
|
src = wasmer.testsout;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
wasmer
|
|
wasmer-compiler-cranelift
|
|
wasmer-compiler-llvm
|
|
wasmer-compiler-singlepass
|
|
];
|
|
}
|