pynmeagps: init at 1.0.35
This commit is contained in:
parent
64d67e6b52
commit
c8eabd7a15
38
pkgs/development/python-modules/pynmeagps/default.nix
Normal file
38
pkgs/development/python-modules/pynmeagps/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, setuptools
|
||||
, pytest-cov
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pynmeagps";
|
||||
version = "1.0.35";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "semuconsulting";
|
||||
repo = "pynmeagps";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-ULGBfTHCFGUSF3cmJ4GEUrgGDo4uJwstBj8nZ7tj0AA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
pytest-cov
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pynmeagps"
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/semuconsulting/pynmeagps";
|
||||
description = "NMEA protocol parser and generator";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ dylan-gonzalez ];
|
||||
};
|
||||
}
|
@ -11290,6 +11290,8 @@ self: super: with self; {
|
||||
|
||||
pynmea2 = callPackage ../development/python-modules/pynmea2 { };
|
||||
|
||||
pynmeagps = callPackage ../development/python-modules/pynmeagps { };
|
||||
|
||||
pynput = callPackage ../development/python-modules/pynput { };
|
||||
|
||||
pynrrd = callPackage ../development/python-modules/pynrrd { };
|
||||
|
Loading…
Reference in New Issue
Block a user