about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wasmer/tests.nix
blob: 6c20ab229ceae04b7d4f26a676373156d6395747 (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
26
{
  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
  ];
}