Merge pull request #186868 from lopsided98/mavproxy-update
This commit is contained in:
commit
c300be33fd
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
||||||
{ stdenv, lib, buildPythonApplication, fetchPypi, matplotlib, numpy, pymavlink, pyserial
|
{ stdenv, lib, buildPythonApplication, fetchPypi, lxml, matplotlib, numpy
|
||||||
, setuptools, wxPython_4_0, billiard, gnureadline, opencv4 }:
|
, opencv4, pymavlink, pyserial, setuptools, wxPython_4_0, billiard
|
||||||
|
, gnureadline }:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "MAVProxy";
|
pname = "MAVProxy";
|
||||||
|
@ -16,13 +17,14 @@ buildPythonApplication rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
lxml
|
||||||
matplotlib
|
matplotlib
|
||||||
numpy
|
numpy
|
||||||
|
opencv4
|
||||||
pymavlink
|
pymavlink
|
||||||
pyserial
|
pyserial
|
||||||
setuptools
|
setuptools
|
||||||
wxPython_4_0
|
wxPython_4_0
|
||||||
opencv4
|
|
||||||
] ++ lib.optionals stdenv.isDarwin [ billiard gnureadline ];
|
] ++ lib.optionals stdenv.isDarwin [ billiard gnureadline ];
|
||||||
|
|
||||||
# No tests
|
# No tests
|
||||||
|
|
Loading…
Reference in a new issue