mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
d0206d0de0
https://github.com/Knio/pynmea2/compare/1.18.0...5d3d2013bff9c5bce2e14132d21fff865b1e58fd
23 lines
541 B
Nix
23 lines
541 B
Nix
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pynmea2";
|
|
version = "1.19.0";
|
|
|
|
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 ];
|
|
};
|
|
}
|