fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
26 lines
433 B
Nix
26 lines
433 B
Nix
{
|
|
buildPythonPackage,
|
|
wasmer,
|
|
pytestCheckHook,
|
|
wasmer-compiler-cranelift,
|
|
wasmer-compiler-llvm,
|
|
wasmer-compiler-singlepass,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
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
|
|
];
|
|
}
|