summary refs log tree commit diff
diff options
context:
space:
mode:
authorKristoffer Søholm <k.soeholm@gmail.com>2017-12-17 19:38:18 +0100
committerKristoffer Søholm <k.soeholm@gmail.com>2017-12-17 20:03:24 +0100
commit56949d7e7526a9f2d874045e2abefa0a463961ec (patch)
treecc7f9026af979dc7f9908d2b4e557a78fc53a799
parent6649ece637e169a9c2ac7ea59fa76f777df20610 (diff)
downloadnixlib-56949d7e7526a9f2d874045e2abefa0a463961ec.tar
nixlib-56949d7e7526a9f2d874045e2abefa0a463961ec.tar.gz
nixlib-56949d7e7526a9f2d874045e2abefa0a463961ec.tar.bz2
nixlib-56949d7e7526a9f2d874045e2abefa0a463961ec.tar.lz
nixlib-56949d7e7526a9f2d874045e2abefa0a463961ec.tar.xz
nixlib-56949d7e7526a9f2d874045e2abefa0a463961ec.tar.zst
nixlib-56949d7e7526a9f2d874045e2abefa0a463961ec.zip
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.
-rw-r--r--pkgs/development/python-modules/pwntools/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pwntools/default.nix b/pkgs/development/python-modules/pwntools/default.nix
index 11f80ca3b2e8..a186c3995488 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";