about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorPatrick Callahan <patrick.callahan@sigfig.com>2017-07-20 10:03:09 -0700
committerPatrick Callahan <patrick.callahan@sigfig.com>2017-07-20 10:29:52 -0700
commit98fe450553c34e44232971fbaad8709b853e89c8 (patch)
tree02cb67efbde07cacfc05758506e91e030ed6498e /pkgs/top-level
parenteea396ca9b54a4b0152723d77f77cdf90d5356a5 (diff)
downloadnixlib-98fe450553c34e44232971fbaad8709b853e89c8.tar
nixlib-98fe450553c34e44232971fbaad8709b853e89c8.tar.gz
nixlib-98fe450553c34e44232971fbaad8709b853e89c8.tar.bz2
nixlib-98fe450553c34e44232971fbaad8709b853e89c8.tar.lz
nixlib-98fe450553c34e44232971fbaad8709b853e89c8.tar.xz
nixlib-98fe450553c34e44232971fbaad8709b853e89c8.tar.zst
nixlib-98fe450553c34e44232971fbaad8709b853e89c8.zip
pythonPackages.pympler: disable tests on Darwin since the included
psutil test needs /proc
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index f3c788894f4f..cf48a16aa9c8 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -14023,6 +14023,8 @@ in {
      substituteInPlace ./test/asizeof/test_asizeof.py --replace "self.assert_(not e" "#self.assert_(not e"
     '';
 
+    doCheck = stdenv.hostPlatform.isLinux;
+
     meta = {
       description = "Tool to measure, monitor and analyze memory behavior";
       homepage = http://pythonhosted.org/Pympler/;