587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
48 lines
956 B
Nix
48 lines
956 B
Nix
{ lib
|
|
, aiohttp
|
|
, awesomeversion
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, hatchling
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tplink-omada-client";
|
|
version = "1.4.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
pname = "tplink_omada_client";
|
|
inherit version;
|
|
hash = "sha256-P7kb8gzPjRwl6KpKbh/k7QqjGU6m+HVBbMCuoabG+5M=";
|
|
};
|
|
|
|
build-system = [
|
|
hatchling
|
|
];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
awesomeversion
|
|
];
|
|
|
|
# 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";
|
|
changelog = "https://github.com/MarkGodwin/tplink-omada-api/releases/tag/release%2Fv${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "omada";
|
|
};
|
|
}
|