2020-12-10 04:20:00 +00:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub
|
2020-03-18 17:03:58 +00:00
|
|
|
, acme, aiohttp, snitun, attrs, pycognito, warrant
|
2020-12-10 04:20:00 +00:00
|
|
|
, pytest-aiohttp, asynctest, atomicwrites, pytest }:
|
2019-12-21 10:27:45 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hass-nabucasa";
|
2020-12-10 04:20:00 +00:00
|
|
|
version = "0.39.0";
|
2019-12-21 10:27:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nabucasa";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-12-10 04:20:00 +00:00
|
|
|
sha256 = "1bsvwxddpp4dsq3k2320qrx5x9lscqzffzz1zj6fbwgc4741f01w";
|
2019-12-21 10:27:45 +00:00
|
|
|
};
|
|
|
|
|
2019-12-29 18:37:08 +00:00
|
|
|
postPatch = ''
|
2020-06-19 10:52:29 +01:00
|
|
|
sed -i 's/"acme.*"/"acme"/' setup.py
|
2020-12-10 20:44:52 +00:00
|
|
|
sed -i 's/"attrs.*"/"attrs"/' setup.py
|
2020-08-08 22:31:38 +01:00
|
|
|
sed -i 's/"cryptography.*"/"cryptography"/' setup.py
|
2019-12-29 18:37:08 +00:00
|
|
|
'';
|
|
|
|
|
2020-06-19 10:52:29 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
acme aiohttp atomicwrites snitun attrs warrant pycognito
|
|
|
|
];
|
2019-12-21 10:27:45 +00:00
|
|
|
|
2020-03-18 17:03:58 +00:00
|
|
|
checkInputs = [ pytest pytest-aiohttp asynctest ];
|
2019-12-21 10:27:45 +00:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest tests/
|
2020-03-18 17:03:58 +00:00
|
|
|
'';
|
2019-12-21 10:27:45 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|