mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-08 19:47:02 +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:
parent
5d68baa8db
commit
742e72eded
1 changed files with 1 additions and 6 deletions
|
@ -16471,12 +16471,7 @@ in modules // {
|
||||||
# See also the older issue: https://code.google.com/p/psutil/issues/detail?id=434
|
# See also the older issue: https://code.google.com/p/psutil/issues/detail?id=434
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
checkPhase = ''
|
buildInputs = with self; [ mock ] ++ optionals stdenv.isDarwin [ pkgs.darwin.IOKit ];
|
||||||
${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 ];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Process and system utilization information interface for python";
|
description = "Process and system utilization information interface for python";
|
||||||
|
|
Loading…
Add table
Reference in a new issue