depot/third_party/nixpkgs/pkgs/development/python-modules/wasmer/tests.nix
Default email 88abffb7d2 Project import generated by Copybara.
GitOrigin-RevId: bc9b956714ed6eac5f8888322aac5bc41389defa
2021-09-18 12:52:07 +02:00

25 lines
423 B
Nix

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