nixpkgs/pkgs/development/python-modules/hass-nabucasa/default.nix

56 lines
952 B
Nix
Raw Normal View History

{ lib
, acme
, aiohttp
, asynctest
, atomicwrites
, attrs
, buildPythonPackage
, fetchFromGitHub
, pycognito
, pytest-aiohttp
, pytestCheckHook
, snitun
, warrant
}:
buildPythonPackage rec {
pname = "hass-nabucasa";
version = "0.41.0";
src = fetchFromGitHub {
owner = "nabucasa";
repo = pname;
rev = version;
sha256 = "sha256-ewWw3PyJGRHP23J6WBBWs9YGl4vTb9/j/soZ6n5wbLM=";
};
postPatch = ''
2020-06-19 10:52:29 +01:00
sed -i 's/"acme.*"/"acme"/' setup.py
'';
2020-06-19 10:52:29 +01:00
propagatedBuildInputs = [
acme
aiohttp
atomicwrites
attrs
pycognito
snitun
warrant
2020-06-19 10:52:29 +01:00
];
checkInputs = [
asynctest
pytest-aiohttp
pytestCheckHook
];
pythonImportsCheck = [ "hass_nabucasa" ];
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 ];
};
}