1 { stdenv, lib, buildPythonApplication, fetchPypi, lxml, matplotlib, numpy
2 , opencv4, pymavlink, pyserial, setuptools, wxpython, billiard
5 buildPythonApplication rec {
10 inherit pname version;
11 hash = "sha256-U5K+0lxJbBvwETnJ3MTMkk47CMOSlJBeFrCLHW9OSh8=";
15 substituteInPlace setup.py \
16 --replace "opencv-python" ""
19 propagatedBuildInputs = [
28 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ billiard gnureadline ];
34 description = "MAVLink proxy and command line ground station";
35 homepage = "https://github.com/ArduPilot/MAVProxy";
36 license = licenses.gpl3Plus;
37 maintainers = with maintainers; [ lopsided98 ];