Unverified Commit 4d70b1fa authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.pymavlink: 2.4.43 -> 2.4.49 (#432228)

parents d2e0ffe5 1818bba0
Loading
Loading
Loading
Loading
+14 −6
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  cython,
  fastcrc,
  fetchPypi,
  future,
  lxml,
  setuptools,
}:

buildPythonPackage rec {
  pname = "pymavlink";
  version = "2.4.43";
  format = "setuptools";
  version = "2.4.49";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-IcShujVcBXQtKvQVEFdtbgjboNd2AunqY1MxzQdV7nY=";
    hash = "sha256-188Q1VktA4oYqpcnERd+u4i+IUPvzCWN9jCwUT6dosI=";
  };

  propagatedBuildInputs = [
    future
  build-system = [
    cython
    setuptools
  ];

  dependencies = [
    fastcrc
    lxml
  ];

@@ -32,6 +39,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python MAVLink interface and utilities";
    homepage = "https://github.com/ArduPilot/pymavlink";
    changelog = "https://github.com/ArduPilot/pymavlink/releases/tag/${version}";
    license = with licenses; [
      lgpl3Plus
      mit