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

37 lines
888 B
Nix
Raw Normal View History

2021-01-14 08:24:21 +00:00
{ stdenv, lib, buildPythonApplication, fetchPypi, matplotlib, numpy, pymavlink, pyserial
, setuptools, wxPython_4_0, billiard, gnureadline }:
2019-12-14 05:32:57 +00:00
buildPythonApplication rec {
pname = "MAVProxy";
2021-10-01 00:38:44 +00:00
version = "1.8.43";
2019-12-14 05:32:57 +00:00
src = fetchPypi {
inherit pname version;
2021-10-01 00:38:44 +00:00
sha256 = "685e595dc8ccf354a62b354b5ef4b1f9558c4b76b1216a093dd1cc1fae37dd27";
2019-12-14 05:32:57 +00:00
};
2021-01-14 08:24:21 +00:00
postPatch = ''
substituteInPlace setup.py \
--replace "opencv-python" ""
'';
2019-12-14 05:32:57 +00:00
propagatedBuildInputs = [
matplotlib
numpy
pymavlink
pyserial
setuptools
wxPython_4_0
2021-01-14 08:24:21 +00:00
] ++ lib.optionals stdenv.isDarwin [ billiard gnureadline ];
2019-12-14 05:32:57 +00:00
# No tests
doCheck = false;
meta = with lib; {
description = "MAVLink proxy and command line ground station";
homepage = "https://github.com/ArduPilot/MAVProxy";
license = licenses.gpl3Plus;
2019-12-14 05:32:57 +00:00
maintainers = with maintainers; [ lopsided98 ];
};
}