2019-12-14 05:31:37 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, future, lxml }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pymavlink";
|
2020-10-16 06:12:16 +01:00
|
|
|
version = "2.4.11";
|
2019-12-14 05:31:37 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-16 06:12:16 +01:00
|
|
|
sha256 = "0b1265b169f809c6ca94911ad2d7649b8e087a7cc573a0a6ea62ade9bea7ca5c";
|
2019-12-14 05:31:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ future lxml ];
|
|
|
|
|
|
|
|
# No tests included in PyPI tarball
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python MAVLink interface and utilities";
|
|
|
|
homepage = "https://github.com/ArduPilot/pymavlink";
|
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = with maintainers; [ lopsided98 ];
|
|
|
|
};
|
|
|
|
}
|