Unverified Commit c0ff432b authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

mavproxy: 1.80.70 -> 1.8.71 (#348020)

parents 1ebf83eb 4d70ac23
Loading
Loading
Loading
Loading
+21 −7
Original line number Diff line number Diff line
{ stdenv, lib, buildPythonApplication, fetchPypi, lxml, matplotlib, numpy
, opencv4, pymavlink, pyserial, setuptools, wxpython, billiard
, gnureadline }:
{ stdenv
, lib
, buildPythonApplication
, fetchFromGitHub
, lxml
, matplotlib
, numpy
, opencv4
, pymavlink
, pyserial
, setuptools
, wxpython
, billiard
, gnureadline
}:

buildPythonApplication rec {
  pname = "MAVProxy";
  version = "1.8.70";
  version = "1.8.71";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-U5K+0lxJbBvwETnJ3MTMkk47CMOSlJBeFrCLHW9OSh8=";
  src = fetchFromGitHub {
    owner = "ArduPilot";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-A7tqV1kBCSuWHJUTdUZGcPY/r7X1edGZs6xDctpMbMI=";
  };

  postPatch = ''