hplip: add missing dependency (#58515)

Graphical programs (e.g. hp-setup) error with:

error: No module named enum

This adds the enum module which fixes the error
This commit is contained in:
hhm0 2019-03-30 19:20:17 -04:00 committed by xeji
parent 80aaa752f5
commit edb323117d

View file

@ -77,6 +77,7 @@ pythonPackages.buildPythonApplication {
sip
] ++ stdenv.lib.optionals withQt5 [
pyqt5
enum-compat
];
makeWrapperArgs = [ "--prefix" "PATH" ":" "${nettools}/bin" ];