summary refs log tree commit diff
path: root/pkgs/applications/system
diff options
context:
space:
mode:
authorLuflosi <luflosi@luflosi.de>2020-07-06 11:11:33 +0200
committerJon <jonringer@users.noreply.github.com>2020-07-06 20:20:45 -0700
commit66bed3798b9b0eefbaebab165acb803d4bfbe814 (patch)
treedfbb0a2b8998e75309170594a3e9c4fcfd06f204 /pkgs/applications/system
parent98576750f450845bcd1b33f45d012479e1f91c7d (diff)
downloadnixpkgs-66bed3798b9b0eefbaebab165acb803d4bfbe814.tar
nixpkgs-66bed3798b9b0eefbaebab165acb803d4bfbe814.tar.gz
nixpkgs-66bed3798b9b0eefbaebab165acb803d4bfbe814.tar.bz2
nixpkgs-66bed3798b9b0eefbaebab165acb803d4bfbe814.tar.lz
nixpkgs-66bed3798b9b0eefbaebab165acb803d4bfbe814.tar.xz
nixpkgs-66bed3798b9b0eefbaebab165acb803d4bfbe814.tar.zst
nixpkgs-66bed3798b9b0eefbaebab165acb803d4bfbe814.zip
glances: remove batinfo dependency
batinfo is no longer in the list of optional dependencies since https://github.com/nicolargo/glances/commit/fd45d4121a3636d6cc0a0d1802ab1aff36aacb78. 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.
Diffstat (limited to 'pkgs/applications/system')
-rw-r--r--pkgs/applications/system/glances/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/applications/system/glances/default.nix b/pkgs/applications/system/glances/default.nix
index 3dfec185b57..470a532ac72 100644
--- a/pkgs/applications/system/glances/default.nix
+++ b/pkgs/applications/system/glances/default.nix
@@ -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