python.pkgs.py3status: Added missing Python deps (#56703)

According to py3status' modules documentation [1]:

- i3ipc: Used by scratchpad_async and window_title_async modules.
- pydbus: Used by kdeconnector, mpris, systemd, vpn_status and wwan
modules.
- pyserial: Used by wwan_status module.

[1]: https://py3status.readthedocs.io/en/latest/modules.html
This commit is contained in:
Thiago Kenji Okada 2019-03-23 08:23:28 -03:00 committed by Robert Schütz
parent b8ed97001e
commit 8820a7ab2c

View File

@ -5,6 +5,10 @@
, requests , requests
, pytz , pytz
, tzlocal , tzlocal
, i3ipc
, pydbus
, pygobject3
, pyserial
, file , file
, acpi , acpi
@ -27,7 +31,7 @@ buildPythonPackage rec {
}; };
doCheck = false; doCheck = false;
propagatedBuildInputs = [ pytz requests tzlocal ]; propagatedBuildInputs = [ pytz requests tzlocal i3ipc pydbus pygobject3 pyserial ];
buildInputs = [ file ]; buildInputs = [ file ];
prePatch = '' prePatch = ''
sed -i -e "s|'file|'${file}/bin/file|" py3status/parse_config.py sed -i -e "s|'file|'${file}/bin/file|" py3status/parse_config.py