3
0
Fork 0
forked from mirrors/nixpkgs

steamcontroller: remove optional and off by default GyroplotSupport

depended on pyside (qt4)
This commit is contained in:
ajs124 2022-06-13 15:11:45 +02:00
parent 68c94a2786
commit 8c68b2f530

View file

@ -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" ];