1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-23 17:56:53 +03:00
nixpkgs/pkgs/development/python-modules/wasmer/tests.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
423 B
Nix
Raw Normal View History

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