pythonPackages.haas-nabucasa: init at 0.29
This commit is contained in:
parent
f508ae5a19
commit
7b4d5a0b0a
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/hass-nabucasa/default.nix
Normal file
28
pkgs/development/python-modules/hass-nabucasa/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -2546,6 +2546,8 @@ in {
|
|||
then callPackage ../development/python-modules/gurobipy/linux.nix {}
|
||||
else throw "gurobipy not yet supported on ${stdenv.hostPlatform.system}";
|
||||
|
||||
hass-nabucasa = callPackage ../development/python-modules/hass-nabucasa { };
|
||||
|
||||
hbmqtt = callPackage ../development/python-modules/hbmqtt { };
|
||||
|
||||
hiro = callPackage ../development/python-modules/hiro {};
|
||||
|
|
Loading…
Reference in a new issue