13da32182d
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
69 lines
1.1 KiB
Nix
69 lines
1.1 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, async-timeout
|
|
, buildPythonPackage
|
|
, crcmod
|
|
, defusedxml
|
|
, fetchFromGitHub
|
|
, freezegun
|
|
, jsonpickle
|
|
, munch
|
|
, mypy
|
|
, pyserial
|
|
, pytest-aiohttp
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, pytz
|
|
, semver
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plugwise";
|
|
version = "0.21.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = "python-plugwise";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-z/HSvk8fXPZmmx7lWaUMPfgT8EAmRn5sjRI+F4JKryw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
async-timeout
|
|
crcmod
|
|
defusedxml
|
|
munch
|
|
pyserial
|
|
python-dateutil
|
|
pytz
|
|
semver
|
|
];
|
|
|
|
checkInputs = [
|
|
freezegun
|
|
jsonpickle
|
|
mypy
|
|
pytest-aiohttp
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"plugwise"
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = with lib; {
|
|
description = "Python module for Plugwise Smiles, Stretch and USB stick";
|
|
homepage = "https://github.com/plugwise/python-plugwise";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|