Merge pull request #178741 from helsinki-systems/fix/steamcontroller-no-qt4

steamcontroller: remove optional and off by default GyroplotSupport
This commit is contained in:
Thiago Kenji Okada
2022-06-26 12:52:09 +01:00
committed by GitHub
@@ -1,5 +1,4 @@
{ lib, fetchFromGitHub, python3Packages, libusb1, linuxHeaders
, GyroplotSupport ? false
}:
with python3Packages;
@@ -21,9 +20,7 @@ buildPythonApplication {
'';
buildInputs = [ libusb1 ];
propagatedBuildInputs = [ psutil python3Packages.libusb1 ]
++ lib.optionals GyroplotSupport [ pyqtgraph pyside ];
propagatedBuildInputs = [ psutil python3Packages.libusb1 ];
doCheck = false;
pythonImportsCheck = [ "steamcontroller" ];