nixpkgs/pkgs/development/python-modules/aioecowitt/default.nix

47 lines
942 B
Nix

{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, meteocalc
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "aioecowitt";
version = "2023.5.0";
format = "setuptools";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-uEA3OA/QOQ/h6ZMnb5hGQXHyqNO+KLmDSZMQBvmRwtE=";
};
propagatedBuildInputs = [
aiohttp
meteocalc
];
nativeCheckInputs = [
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 ];
};
}