mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
1349f043f5
Diff: https://github.com/plugwise/python-plugwise/compare/refs/tags/v0.33.0...v0.33.1 Changelog: https://github.com/plugwise/python-plugwise/releases/tag/v0.33.1
69 lines
1.2 KiB
Nix
69 lines
1.2 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, async-timeout
|
|
, buildPythonPackage
|
|
, crcmod
|
|
, defusedxml
|
|
, fetchFromGitHub
|
|
, freezegun
|
|
, jsonpickle
|
|
, munch
|
|
, pyserial
|
|
, pytest-aiohttp
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, pytz
|
|
, semver
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plugwise";
|
|
version = "0.33.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = "python-plugwise";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-uJBUim5FlS+Jw3rGEKuorksVIgI5tVRAI7tESeYnGUc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
async-timeout
|
|
crcmod
|
|
defusedxml
|
|
munch
|
|
pyserial
|
|
python-dateutil
|
|
pytz
|
|
semver
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
jsonpickle
|
|
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";
|
|
changelog = "https://github.com/plugwise/python-plugwise/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|