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
Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
wasmer
/
tests.nix
blob
e46c9f7ac6705e80198c155b9c53c32e7e9f10fd
1
{ buildPythonPackage
2
, wasmer
3
, pytestCheckHook
4
, wasmer-compiler-cranelift
5
, wasmer-compiler-llvm
6
, wasmer-compiler-singlepass
7
}:
8
9
buildPythonPackage {
10
pname = "wasmer-tests";
11
inherit (wasmer) version;
12
13
src = wasmer.testsout;
14
15
dontBuild = true;
16
dontInstall = true;
17
18
nativeCheckInputs = [
19
pytestCheckHook
20
wasmer
21
wasmer-compiler-cranelift
22
wasmer-compiler-llvm
23
wasmer-compiler-singlepass
24
];
25
}