nixpkgs/pkgs/development/python-modules/hass-nabucasa/default.nix
2019-12-21 11:27:45 +01:00

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 ];
};
}