nixpkgs-suyu/pkgs/applications/science/robotics/mavproxy/default.nix

32 lines
703 B
Nix
Raw Normal View History

2019-12-14 06:32:57 +01:00
{ lib, buildPythonApplication, fetchPypi, matplotlib, numpy, pymavlink, pyserial
, setuptools, wxPython_4_0 }:
buildPythonApplication rec {
pname = "MAVProxy";
2020-11-14 07:25:20 +01:00
version = "1.8.23";
2019-12-14 06:32:57 +01:00
src = fetchPypi {
inherit pname version;
2020-11-14 07:25:20 +01:00
sha256 = "46c70e013d3e465daae5523f6a1aad553e6ee0f4db137bb935a3273f7ffcc22e";
2019-12-14 06:32:57 +01: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 ];
};
}