forked from mirrors/nixpkgs
24 lines
576 B
Nix
24 lines
576 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|