My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/wasmer/tests.nix

25 lines
423 B

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