summary refs log blame commit diff
path: root/pkgs/development/python-modules/wasmer/tests.nix
blob: bdb3adfe93cef801ee30fc861267f75048a93869 (plain) (tree)
























                              
{ 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;

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