1{ lib, buildPythonPackage, fetchPypi, future, lxml }:
2
3buildPythonPackage rec {
4 pname = "pymavlink";
5 version = "2.4.9";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "6049f270aa0a1013c7dcd32b9f4756d79b6a2ccf73babeca2c46b9e391e644fe";
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}