summary refs log tree commit diff
path: root/pkgs/development/python-modules/wasmer/tests.nix
blob: 523d06a401add211740461f0ccda15bb289a1e5a (plain) (blame)
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
{ 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;

  nativeCheckInputs = [
    pytestCheckHook
    wasmer
    wasmer-compiler-cranelift
    wasmer-compiler-llvm
    wasmer-compiler-singlepass
  ];
}