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-31 00:20:17 +01:00
committed by xeji
parent 80aaa752f5
commit edb323117d
+1
View File
@@ -77,6 +77,7 @@ pythonPackages.buildPythonApplication {
sip
] ++ stdenv.lib.optionals withQt5 [
pyqt5
enum-compat
];
makeWrapperArgs = [ "--prefix" "PATH" ":" "${nettools}/bin" ];