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

37 lines
884 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-02-11 12:26:47 +00:00
version = "1.8.32";
2019-12-14 05:32:57 +00:00
src = fetchPypi {
inherit pname version;
2021-02-11 12:26:47 +00:00
sha256 = "f89ba880fe7351a13c68ba3f4c56acd6e246790b103f3ec79d9a527b5767b8f0";
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.gpl3;
maintainers = with maintainers; [ lopsided98 ];
};
}