41 lines
894 B
Nix
41 lines
894 B
Nix
|
{
|
||
|
lib,
|
||
|
aiohttp,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
poetry-core,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "switchbot-api";
|
||
|
version = "2.2.1";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.10";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "SeraphicCorp";
|
||
|
repo = "py-switchbot-api";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-jpm01wDVLgGr5SMaevxiYGfv8tVa1ibRtcHkEK3yb58=";
|
||
|
};
|
||
|
|
||
|
build-system = [ poetry-core ];
|
||
|
|
||
|
dependencies = [ aiohttp ];
|
||
|
|
||
|
# Module has no tests
|
||
|
doCheck = false;
|
||
|
|
||
|
pythonImportsCheck = [ "switchbot_api" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Asynchronous library to use Switchbot API";
|
||
|
homepage = "https://github.com/SeraphicCorp/py-switchbot-api";
|
||
|
changelog = "https://github.com/SeraphicCorp/py-switchbot-api/releases/tag/v${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|