52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
requests,
|
|
setuptools,
|
|
ujson,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ayla-iot-unofficial";
|
|
version = "1.4.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rewardone";
|
|
repo = "ayla-iot-unofficial";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-y2SjnM48OYyXhBxLHE8R9di4ErORUgS87m/FKs21NLU=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
requests
|
|
ujson
|
|
];
|
|
|
|
pythonImportsCheck = [ "ayla_iot_unofficial" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [ "tests/ayla_iot_unofficial.py" ];
|
|
|
|
# tests interact with the actual API
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/rewardone/ayla-iot-unofficial/releases/tag/v${version}";
|
|
description = "Unofficial python library for interacting with the Ayla IoT API";
|
|
homepage = "https://github.com/rewardone/ayla-iot-unofficial";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|