python3Packages.pymavlink: 2.4.14 -> 2.4.15 (#120139)

This commit is contained in:
Ben Wolsieffer 2021-04-23 00:53:54 -04:00 committed by GitHub
parent 0f080fb7f4
commit 7d262afed3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,22 +2,27 @@
buildPythonPackage rec {
pname = "pymavlink";
version = "2.4.14";
version = "2.4.15";
src = fetchPypi {
inherit pname version;
sha256 = "3bc3709c735ebb3f98f19e96c8887868f4671077d4808076cfc5445912633881";
sha256 = "106va20k0ahy0l2qvxf8k5pvqkgdmxbgzd9kij9fkrahlba5mx3v";
};
propagatedBuildInputs = [ future lxml ];
# No tests included in PyPI tarball
# No tests included in PyPI tarball. We cannot use the GitHub tarball because
# we would like to use the same commit of the mavlink messages repo as
# included in the PyPI tarball, and there is no easy way to determine what
# commit is included.
doCheck = false;
pythonImportsCheck = [ "pymavlink" ];
meta = with lib; {
description = "Python MAVLink interface and utilities";
homepage = "https://github.com/ArduPilot/pymavlink";
license = licenses.lgpl3;
license = with licenses; [ lgpl3Only mit ];
maintainers = with maintainers; [ lopsided98 ];
};
}