fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
45 lines
954 B
Nix
45 lines
954 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";
|
|
};
|
|
}
|