depot/third_party/nixpkgs/pkgs/development/python-modules/aioecowitt/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

51 lines
995 B
Nix

{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, meteocalc
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "aioecowitt";
version = "2024.2.2";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-QfUawUtkNl2molropV8NSU7Kfm/D5/xuaPCjgm2TVOs=";
};
nativeBuildInputs = [
setuptools
];
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 ];
};
}