python3Packages.pynmeagps: 1.1.4 -> 1.1.7 (#556148)

This commit is contained in:
Fabian Affolter
2026-08-24 23:12:28 +00:00
committed by GitHub
2 changed files with 10 additions and 8 deletions

View File

@@ -7,7 +7,7 @@
versionCheckHook,
}:
python3Packages.buildPythonApplication rec {
python3Packages.buildPythonApplication (finalAttrs: {
pname = "MAVProxy";
version = "1.8.74";
pyproject = true;
@@ -15,7 +15,7 @@ python3Packages.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "ArduPilot";
repo = "MAVProxy";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-1/bp3vlCXt4Hg36zwMKSzPSxW7xlxpfx2o+2uQixdos=";
};
@@ -36,10 +36,10 @@ python3Packages.buildPythonApplication rec {
matplotlib
numpy
opencv-python
pkg-resources-backport
pymavlink
pynmeagps
pyserial
setuptools # Imports `pkg_resources` at runtime
wxpython
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
@@ -52,12 +52,14 @@ python3Packages.buildPythonApplication rec {
# No tests, but we can check the version
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = false;
meta = {
description = "MAVLink proxy and command line ground station";
mainProgram = "mavproxy.py";
homepage = "https://github.com/ArduPilot/MAVProxy";
changelog = "https://github.com/ArduPilot/MAVProxy/releases/tag/${src.tag}";
changelog = "https://github.com/ArduPilot/MAVProxy/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ lopsided98 ];
mainProgram = "mavproxy.py";
};
}
})

View File

@@ -9,14 +9,14 @@
buildPythonPackage (finalAttrs: {
pname = "pynmeagps";
version = "1.1.4";
version = "1.1.7";
pyproject = true;
src = fetchFromGitHub {
owner = "semuconsulting";
repo = "pynmeagps";
tag = "v${finalAttrs.version}";
hash = "sha256-uVIlr+zRwbaQqtInJqCebzMR5pe7dEls3gVzbW7TYkQ=";
hash = "sha256-tElTqwAISkt1hNlUIuduHdYfqLVhGZwqucvPb3ppY+c=";
};
build-system = [ setuptools ];