2021-02-23 00:38:52 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
|
2018-05-23 16:08:37 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pynmea2";
|
2021-03-27 04:18:14 -07:00
|
|
|
version = "1.17.0";
|
2018-05-23 16:08:37 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-27 04:18:14 -07:00
|
|
|
sha256 = "0x5xrk51dpzsvky1ncikadm80a44a82j3mjjykmhmx7jddc5qh9d";
|
2018-05-23 16:08:37 -07:00
|
|
|
};
|
|
|
|
|
2021-02-23 00:38:52 -08:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2018-05-23 16:08:37 -07:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Knio/pynmea2";
|
2018-05-23 16:08:37 -07:00
|
|
|
description = "Python library for the NMEA 0183 protcol";
|
|
|
|
license = lib.licenses.mit;
|
2020-08-15 06:25:59 -07:00
|
|
|
maintainers = with lib.maintainers; [ oxzi ];
|
2018-05-23 16:08:37 -07:00
|
|
|
};
|
|
|
|
}
|