pythonPackages.pymavlink: init at 2.4.1

This commit is contained in:
Ben Wolsieffer 2019-12-14 00:31:37 -05:00 committed by Jon
parent d3d8b776f1
commit 9475a7da6c
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, future, lxml }:
buildPythonPackage rec {
pname = "pymavlink";
version = "2.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "0y9rz3piddzdjpp7d5w9xi6lc9v9b4p4375a5hrfiphrmhds85i3";
};
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 ];
};
}

View File

@ -1070,6 +1070,8 @@ in {
pymatgen-lammps = callPackage ../development/python-modules/pymatgen-lammps { };
pymavlink = callPackage ../development/python-modules/pymavlink { };
pymsgbox = callPackage ../development/python-modules/pymsgbox { };
pynisher = callPackage ../development/python-modules/pynisher { };