2020-03-18 10:03:58 -07:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch
|
|
|
|
, acme, aiohttp, snitun, attrs, pycognito, warrant
|
2020-06-19 02:52:29 -07:00
|
|
|
, pytest-aiohttp, asynctest, atomicwrites, pytest, pythonOlder }:
|
2019-12-21 02:27:45 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hass-nabucasa";
|
2020-11-16 14:07:02 -08:00
|
|
|
version = "0.37.2";
|
2019-12-21 02:27:45 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nabucasa";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-11-16 14:07:02 -08:00
|
|
|
sha256 = "0gv8p9nba7269qhc05ds0i79wz4419qjfhn7k9kcngfj1yngb6dm";
|
2019-12-21 02:27:45 -08:00
|
|
|
};
|
|
|
|
|
2019-12-29 10:37:08 -08:00
|
|
|
postPatch = ''
|
2020-06-19 02:52:29 -07:00
|
|
|
sed -i 's/"acme.*"/"acme"/' setup.py
|
2020-08-08 14:31:38 -07:00
|
|
|
sed -i 's/"cryptography.*"/"cryptography"/' setup.py
|
2019-12-29 10:37:08 -08:00
|
|
|
'';
|
|
|
|
|
2020-06-19 02:52:29 -07:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
acme aiohttp atomicwrites snitun attrs warrant pycognito
|
|
|
|
];
|
2019-12-21 02:27:45 -08:00
|
|
|
|
2020-03-18 10:03:58 -07:00
|
|
|
checkInputs = [ pytest pytest-aiohttp asynctest ];
|
2019-12-21 02:27:45 -08:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest tests/
|
2020-03-18 10:03:58 -07:00
|
|
|
'';
|
2019-12-21 02:27:45 -08:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/NabuCasa/hass-nabucasa";
|
|
|
|
description = "Home Assistant cloud integration by Nabu Casa, inc.";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ Scriptkiddi ];
|
|
|
|
};
|
|
|
|
}
|