51 lines
1 KiB
Nix
51 lines
1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
pythonOlder,
|
||
|
fetchFromGitHub,
|
||
|
pycryptodomex,
|
||
|
pytestCheckHook,
|
||
|
requests,
|
||
|
setuptools,
|
||
|
xmltodict,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "huawei-lte-api";
|
||
|
version = "1.10";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Salamek";
|
||
|
repo = "huawei-lte-api";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-L6xCX+NHASunB876N1R++xMOx55Z8zc77j5QwKqHsNY=";
|
||
|
};
|
||
|
|
||
|
build-system = [ setuptools ];
|
||
|
|
||
|
dependencies = [
|
||
|
pycryptodomex
|
||
|
requests
|
||
|
xmltodict
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"huawei_lte_api.AuthorizedConnection"
|
||
|
"huawei_lte_api.Client"
|
||
|
"huawei_lte_api.Connection"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "API For huawei LAN/WAN LTE Modems";
|
||
|
homepage = "https://github.com/Salamek/huawei-lte-api";
|
||
|
changelog = "https://github.com/Salamek/huawei-lte-api/releases/tag/${version}";
|
||
|
license = licenses.lgpl3Only;
|
||
|
maintainers = with maintainers; [ dotlambda ];
|
||
|
};
|
||
|
}
|