depot/third_party/nixpkgs/pkgs/development/python-modules/pynmea2/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

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 ];
};
}