blob: 24c06839424f2262b296ee2d77bd46281457a5f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
buildPythonPackage,
wasmer,
pytestCheckHook,
wasmer-compiler-cranelift,
wasmer-compiler-llvm,
wasmer-compiler-singlepass,
}:
buildPythonPackage {
format = "setuptools";
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
];
}
|