1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

pythonPackages.psutil: Drop busybox dependency

This broke the build on OS X. And we're not even running the tests
anyway.
This commit is contained in:
Eelco Dolstra 2016-05-12 14:27:57 +02:00
parent 5d68baa8db
commit 742e72eded

View file

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