3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/robotics/mavproxy/default.nix

32 lines
691 B
Nix
Raw Normal View History

2019-12-14 05:32:57 +00:00
{ lib, buildPythonApplication, fetchPypi, matplotlib, numpy, pymavlink, pyserial
, setuptools, wxPython_4_0 }:
buildPythonApplication rec {
pname = "MAVProxy";
2019-12-27 18:53:32 +00:00
version = "1.8.18";
2019-12-14 05:32:57 +00:00
src = fetchPypi {
inherit pname version;
2019-12-27 18:53:32 +00:00
sha256 = "1fi4m3591wws5cq43q8aljf91mzs6i9yhn9rimhpfrskbyf9knvm";
2019-12-14 05:32:57 +00:00
};
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 ];
};
}