2022-11-21 17:40:18 +00:00
|
|
|
{ lib
|
|
|
|
, aiohttp
|
2023-04-29 16:46:19 +00:00
|
|
|
, awesomeversion
|
2022-11-21 17:40:18 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, hatchling
|
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tplink-omada-client";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "1.4.0";
|
2024-02-29 20:09:43 +00:00
|
|
|
pyproject = true;
|
2022-11-21 17:40:18 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "tplink_omada_client";
|
|
|
|
inherit version;
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-P7kb8gzPjRwl6KpKbh/k7QqjGU6m+HVBbMCuoabG+5M=";
|
2022-11-21 17:40:18 +00:00
|
|
|
};
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
build-system = [
|
2022-11-21 17:40:18 +00:00
|
|
|
hatchling
|
|
|
|
];
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
dependencies = [
|
2022-11-21 17:40:18 +00:00
|
|
|
aiohttp
|
2023-04-29 16:46:19 +00:00
|
|
|
awesomeversion
|
2022-11-21 17:40:18 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Module have no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"tplink_omada_client"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Library for the TP-Link Omada SDN Controller API";
|
|
|
|
homepage = "https://github.com/MarkGodwin/tplink-omada-api";
|
2023-03-08 16:32:21 +00:00
|
|
|
changelog = "https://github.com/MarkGodwin/tplink-omada-api/releases/tag/release%2Fv${version}";
|
2022-11-21 17:40:18 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "omada";
|
2022-11-21 17:40:18 +00:00
|
|
|
};
|
|
|
|
}
|