nixpkgs/pkgs/development/python-modules/aprslib/default.nix
2021-12-05 22:23:23 -08:00

33 lines
666 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, mox3
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "aprslib";
version = "0.7.0";
src = fetchFromGitHub {
owner = "rossengeorgiev";
repo = "aprs-python";
rev = "v${version}";
sha256 = "sha256-QasyF0Ch4zdPoAgcqRavEENVGA/02/AgeWAgXYcSUjk=";
};
checkInputs = [
mox3
pytestCheckHook
];
pythonImportsCheck = [ "aprslib" ];
meta = with lib; {
description = "Module for accessing APRS-IS and parsing APRS packets";
homepage = "https://github.com/rossengeorgiev/aprs-python";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dotlambda ];
};
}