1{ lib, buildPythonPackage, fetchPypi, future, lxml }:
2
3buildPythonPackage rec {
4 pname = "pymavlink";
5 version = "2.4.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "332d3d0291b4482641a5b3cd97e879817f50eb9c2b2ddcc30d51d619bad01b51";
10 };
11
12 propagatedBuildInputs = [ future lxml ];
13
14 # No tests included in PyPI tarball
15 doCheck = false;
16
17 meta = with lib; {
18 description = "Python MAVLink interface and utilities";
19 homepage = "https://github.com/ArduPilot/pymavlink";
20 license = licenses.lgpl3;
21 maintainers = with maintainers; [ lopsided98 ];
22 };
23}