pynmeagps: init at 1.0.35

This commit is contained in:
Dylan Gonzalez 2024-04-07 13:16:27 +10:00
parent 64d67e6b52
commit c8eabd7a15
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, setuptools
, pytest-cov
}:
buildPythonPackage rec {
pname = "pynmeagps";
version = "1.0.35";
pyproject = true;
src = fetchFromGitHub {
owner = "semuconsulting";
repo = "pynmeagps";
rev = "v${version}";
hash = "sha256-ULGBfTHCFGUSF3cmJ4GEUrgGDo4uJwstBj8nZ7tj0AA=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
pytest-cov
];
pythonImportsCheck = [
"pynmeagps"
];
meta = {
homepage = "https://github.com/semuconsulting/pynmeagps";
description = "NMEA protocol parser and generator";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ dylan-gonzalez ];
};
}

View File

@ -11290,6 +11290,8 @@ self: super: with self; {
pynmea2 = callPackage ../development/python-modules/pynmea2 { };
pynmeagps = callPackage ../development/python-modules/pynmeagps { };
pynput = callPackage ../development/python-modules/pynput { };
pynrrd = callPackage ../development/python-modules/pynrrd { };