depot/third_party/nixpkgs/pkgs/development/python-modules/pyswitchbot/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

58 lines
1.2 KiB
Nix

{
lib,
bleak,
bleak-retry-connector,
boto3,
buildPythonPackage,
cryptography,
fetchFromGitHub,
pyopenssl,
pythonOlder,
pytestCheckHook,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "pyswitchbot";
version = "0.48.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pySwitchbot";
rev = "refs/tags/${version}";
hash = "sha256-zJzNVwrG5R2cLN7mJY9kjji2p1jP/b3b0qU7CMOPXCE=";
};
build-system = [ setuptools ];
dependencies = [
bleak
bleak-retry-connector
boto3
cryptography
pyopenssl
requests
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# mismatch in expected data structure
"test_parse_advertisement_data_curtain"
];
pythonImportsCheck = [ "switchbot" ];
meta = with lib; {
description = "Python library to control Switchbot IoT devices";
homepage = "https://github.com/Danielhiversen/pySwitchbot";
changelog = "https://github.com/Danielhiversen/pySwitchbot/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
platforms = platforms.linux;
};
}