Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pymavlink / default.nix
blobcf8c95130026ce010f1e152619f6fe67fcce527d
1 { lib, buildPythonPackage, fetchPypi, future, lxml }:
3 buildPythonPackage rec {
4   pname = "pymavlink";
5   version = "2.4.14";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "3bc3709c735ebb3f98f19e96c8887868f4671077d4808076cfc5445912633881";
10   };
12   propagatedBuildInputs = [ future lxml ];
14   # No tests included in PyPI tarball
15   doCheck = false;
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   };