504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
23 lines
566 B
Nix
23 lines
566 B
Nix
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pynmea2";
|
|
version = "1.19.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Hap5uTJ5+IfRwjXlzFx54yZEVkE4zkaYmrD0ovyXDXw=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "pynmea2" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/Knio/pynmea2";
|
|
description = "Python library for the NMEA 0183 protcol";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ oxzi ];
|
|
};
|
|
}
|