mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
29 lines
743 B
Nix
29 lines
743 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, acme, aiohttp, snitun, attrs, pytest-aiohttp, warrant, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hass-nabucasa";
|
|
version = "0.29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nabucasa";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "182nh5i3hlj0kqkbynk69md0ddq83w02l8lz4m03d8xbjixzi1k1";
|
|
};
|
|
|
|
propagatedBuildInputs = [ acme aiohttp snitun attrs warrant ];
|
|
|
|
checkInputs = [ pytest pytest-aiohttp ];
|
|
|
|
checkPhase = ''
|
|
pytest tests/
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|