6f2e446ea7
Upstream removed it in https://github.com/NabuCasa/hass-nabucasa/pull/318 and didn't use it for Python >= 3.8 anyway.
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, acme
|
|
, aiohttp
|
|
, atomicwrites-homeassistant
|
|
, attrs
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pycognito
|
|
, pytest-aiohttp
|
|
, pytestCheckHook
|
|
, snitun
|
|
, warrant
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hass-nabucasa";
|
|
version = "0.61.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nabucasa";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-KG2eCwGZWVtepJQdsSwFziWsT1AbV6rYWRIO/I/CR8g=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "acme==" "acme>=" \
|
|
--replace "pycognito==" "pycognito>=" \
|
|
--replace "snitun==" "snitun>=" \
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
acme
|
|
aiohttp
|
|
atomicwrites-homeassistant
|
|
attrs
|
|
pycognito
|
|
snitun
|
|
warrant
|
|
];
|
|
|
|
doCheck = lib.versionAtLeast pytest-aiohttp.version "1.0.0";
|
|
|
|
nativeCheckInputs = [
|
|
pytest-aiohttp
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "hass_nabucasa" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/NabuCasa/hass-nabucasa";
|
|
description = "Python module for the Home Assistant cloud integration";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ Scriptkiddi ];
|
|
};
|
|
}
|