From 56949d7e7526a9f2d874045e2abefa0a463961ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristoffer=20S=C3=B8holm?= Date: Sun, 17 Dec 2017 19:38:18 +0100 Subject: [PATCH] pythonPackages.pwntools: disable tests There aren't any tests to run, and now the package fails to build because of a crash while looking if there are any tests. --- pkgs/development/python-modules/pwntools/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/pwntools/default.nix b/pkgs/development/python-modules/pwntools/default.nix index 11f80ca3b2e..a186c399548 100644 --- a/pkgs/development/python-modules/pwntools/default.nix +++ b/pkgs/development/python-modules/pwntools/default.nix @@ -17,6 +17,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ Mako packaging pysocks pygments ROPGadget capstone paramiko pip psutil pyelftools pypandoc pyserial dateutil requests tox pandoc unicorn intervaltree ]; disabled = isPy3k; + doCheck = false; # no setuptools tests for the package meta = with stdenv.lib; { homepage = "http://pwntools.com";