diff --git a/pkgs/development/python-modules/distorm3/default.nix b/pkgs/development/python-modules/distorm3/default.nix index 7a0b23e77a74..715e8c357143 100644 --- a/pkgs/development/python-modules/distorm3/default.nix +++ b/pkgs/development/python-modules/distorm3/default.nix @@ -2,6 +2,8 @@ , buildPythonPackage , fetchFromGitHub , pythonOlder +, pytestCheckHook +, yasm }: buildPythonPackage rec { @@ -17,8 +19,17 @@ buildPythonPackage rec { sha256 = "012bh1l2w7i9q8rcnznj3x0lra09d5yxd3r42cbrqdwl1mmg26qn"; }; - # no tests included - doCheck = false; + checkInputs = [ + pytestCheckHook + yasm + ]; + + disabledTests = [ + # TypeError: __init__() missing 3 required positional... + "test_dummy" + ]; + + pythonImportsCheck = [ "distorm3" ]; meta = with lib; { description = "Disassembler library for x86/AMD64";