python3Packages.aprslib: init at 0.6.47
This commit is contained in:
parent
9f60d2fa62
commit
da30dd8e8f
32
pkgs/development/python-modules/aprslib/default.nix
Normal file
32
pkgs/development/python-modules/aprslib/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, mox3
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aprslib";
|
||||
version = "0.6.47";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rossengeorgiev";
|
||||
repo = "aprs-python";
|
||||
rev = "v${version}";
|
||||
sha256 = "1569v74ym2r8vxx3dnjcs5fr7rdrfb0i9sycny5frw2zgms4ag6b";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -477,6 +477,8 @@ in {
|
||||
|
||||
apptools = callPackage ../development/python-modules/apptools { };
|
||||
|
||||
aprslib = callPackage ../development/python-modules/aprslib { };
|
||||
|
||||
APScheduler = callPackage ../development/python-modules/APScheduler { };
|
||||
|
||||
apsw = callPackage ../development/python-modules/apsw { };
|
||||
|
Loading…
Reference in New Issue
Block a user