mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
24 lines
588 B
Nix
24 lines
588 B
Nix
{ lib, buildPythonPackage, fetchPypi, future, lxml }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pymavlink";
|
|
version = "2.4.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "332d3d0291b4482641a5b3cd97e879817f50eb9c2b2ddcc30d51d619bad01b51";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|