nixpkgs/pkgs/development/python-modules/pymavlink/default.nix

24 lines
588 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, future, lxml }:
buildPythonPackage rec {
pname = "pymavlink";
2020-07-31 09:56:44 +01:00
version = "2.4.9";
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:44 +01:00
sha256 = "6049f270aa0a1013c7dcd32b9f4756d79b6a2ccf73babeca2c46b9e391e644fe";
};
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 ];
};
}