repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
wasmer
/
tests.nix
blob
6c20ab229ceae04b7d4f26a676373156d6395747
1
{
2
buildPythonPackage,
3
wasmer,
4
pytestCheckHook,
5
wasmer-compiler-cranelift,
6
wasmer-compiler-llvm,
7
wasmer-compiler-singlepass,
8
}:
9
10
buildPythonPackage {
11
pname = "wasmer-tests";
12
inherit (wasmer) version;
13
14
src = wasmer.testsout;
15
16
dontBuild = true;
17
dontInstall = true;
18
19
nativeCheckInputs = [
20
pytestCheckHook
21
wasmer
22
wasmer-compiler-cranelift
23
wasmer-compiler-llvm
24
wasmer-compiler-singlepass
25
];
26
}