2021-09-18 10:52:07 +00:00
|
|
|
{ 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;
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2021-09-18 10:52:07 +00:00
|
|
|
pytestCheckHook
|
|
|
|
wasmer
|
|
|
|
wasmer-compiler-cranelift
|
|
|
|
wasmer-compiler-llvm
|
|
|
|
wasmer-compiler-singlepass
|
|
|
|
];
|
|
|
|
}
|