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