a7e6f9c042
Diff: https://github.com/nabucasa/hass-nabucasa/compare/refs/tags/0.66.2...0.67.1 Changelog: https://github.com/NabuCasa/hass-nabucasa/releases/tag/0.67.1
67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
{ lib
|
|
, acme
|
|
, aiohttp
|
|
, atomicwrites-homeassistant
|
|
, attrs
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pycognito
|
|
, pytest-aiohttp
|
|
, pytest-timeout
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, snitun
|
|
, syrupy
|
|
, xmltodict
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hass-nabucasa";
|
|
version = "0.67.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nabucasa";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-/cu7+fMbe9kyWGGBGBwjsiA6PXoUJZ7IFzpEcnVSLn0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "acme==" "acme>=" \
|
|
--replace "pycognito==" "pycognito>=" \
|
|
--replace "snitun==" "snitun>=" \
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
acme
|
|
aiohttp
|
|
atomicwrites-homeassistant
|
|
attrs
|
|
pycognito
|
|
snitun
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-aiohttp
|
|
pytest-timeout
|
|
pytestCheckHook
|
|
syrupy
|
|
xmltodict
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"hass_nabucasa"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/NabuCasa/hass-nabucasa";
|
|
description = "Python module for the Home Assistant cloud integration";
|
|
changelog = "https://github.com/NabuCasa/hass-nabucasa/releases/tag/${version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ Scriptkiddi ];
|
|
};
|
|
}
|