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";