mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
26 lines
429 B
Nix
26 lines
429 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;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
wasmer
|
|
wasmer-compiler-cranelift
|
|
wasmer-compiler-llvm
|
|
wasmer-compiler-singlepass
|
|
];
|
|
}
|