From 742e72eded29746086ef11f40fba0908d1550886 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 12 May 2016 14:27:57 +0200 Subject: [PATCH] pythonPackages.psutil: Drop busybox dependency This broke the build on OS X. And we're not even running the tests anyway. --- pkgs/top-level/python-packages.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5d762a8065c0..4414d2602b10 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16471,12 +16471,7 @@ in modules // { # See also the older issue: https://code.google.com/p/psutil/issues/detail?id=434 doCheck = false; - checkPhase = '' - ${python.interpreter} test/test_psutil.py - ''; - - # Test suite needs `free`, therefore we have pkgs.busybox - buildInputs = with self; [ mock pkgs.busybox] ++ optionals stdenv.isDarwin [ pkgs.darwin.IOKit ]; + buildInputs = with self; [ mock ] ++ optionals stdenv.isDarwin [ pkgs.darwin.IOKit ]; meta = { description = "Process and system utilization information interface for python";