forked from mirrors/nixpkgs
3a148714a5
Diff: https://github.com/home-assistant-libs/aioecowitt/compare/refs/tags/2022.09.3...2022.11.0 Changelog: https://github.com/home-assistant-libs/aioecowitt/releases/tag/2022.11.0
47 lines
937 B
Nix
47 lines
937 B
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, meteocalc
|
|
, pytest-aiohttp
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioecowitt";
|
|
version = "2022.11.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "home-assistant-libs";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-v+O4J3GZZelF3H3BbL7LVRZEIH01WrDNnmOOWG4rVT0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
meteocalc
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest-aiohttp
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"aioecowitt"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Wrapper for the EcoWitt protocol";
|
|
homepage = "https://github.com/home-assistant-libs/aioecowitt";
|
|
changelog = "https://github.com/home-assistant-libs/aioecowitt/releases/tag/${version}";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|