b6d97fd731
GitOrigin-RevId: be0b453d7c7eee2090962c9a83749b024ff9acf5
31 lines
703 B
Nix
31 lines
703 B
Nix
{ lib, buildPythonApplication, fetchPypi, matplotlib, numpy, pymavlink, pyserial
|
|
, setuptools, wxPython_4_0 }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "MAVProxy";
|
|
version = "1.8.30";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "fe046481b793b592334749249620fce8a463f4c46b394ff744645975465d677b";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
matplotlib
|
|
numpy
|
|
pymavlink
|
|
pyserial
|
|
setuptools
|
|
wxPython_4_0
|
|
];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "MAVLink proxy and command line ground station";
|
|
homepage = "https://github.com/ArduPilot/MAVProxy";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ lopsided98 ];
|
|
};
|
|
}
|