glances: remove batinfo dependency

batinfo is no longer in the list of optional dependencies since fd45d4121a. batinfo seems to no longer be maintained and also doesn't work on macOS, causing the sensors plugin of glances to fail. glances automatically uses psutil when batinfo is not available.
This commit is contained in:
Luflosi 2020-07-06 11:11:33 +02:00 committed by Jon
parent 98576750f4
commit 66bed3798b

View file

@ -1,7 +1,7 @@
{ stdenv, buildPythonApplication, fetchFromGitHub, fetchpatch, isPyPy, lib
, future, psutil, setuptools
# Optional dependencies:
, bottle, batinfo, pysnmp
, bottle, pysnmp
, hddtemp
, netifaces # IP module
}:
@ -35,7 +35,6 @@ buildPythonApplication rec {
'';
propagatedBuildInputs = [
batinfo
bottle
future
netifaces