Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pynmea2 / default.nix
blob2bfdd61a62025d23648cb505716ae599b6e0f899
1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "pynmea2";
5   version = "1.19.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-Hap5uTJ5+IfRwjXlzFx54yZEVkE4zkaYmrD0ovyXDXw=";
11   };
13   nativeCheckInputs = [ pytestCheckHook ];
15   pythonImportsCheck = [ "pynmea2" ];
17   meta = {
18     homepage = "https://github.com/Knio/pynmea2";
19     description = "Python library for the NMEA 0183 protcol";
20     license = lib.licenses.mit;
21     maintainers = with lib.maintainers; [ oxzi ];
22   };