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

24 lines
576 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, future, lxml }:
buildPythonPackage rec {
pname = "pymavlink";
version = "2.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "0vxqn36wldvpzag399a54r37bdgx052gv1k7akbnddcwry0n9vl0";
};
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 ];
};
}