l hass: add pyscript dev environment

This commit is contained in:
lassulus 2022-03-25 13:43:44 +01:00
parent d2556cf5c7
commit b14ccba40f
4 changed files with 79 additions and 0 deletions

View file

@ -19,6 +19,7 @@ let
in {
imports = [
./pyscript
./zigbee.nix
./rooms/bett.nix
./rooms/essen.nix

View file

@ -0,0 +1 @@
hass_token

View file

@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
{
systemd.tmpfiles.rules = [
"L+ /var/lib/hass/custom_components/pyscript - - - - ${pkgs.fetchzip {
url = "https://github.com/custom-components/pyscript/releases/download/1.3.2/hass-custom-pyscript.zip";
sha256 = "0cqdjj46s5xp4mqxb0ic790jm1xp3z0zr2n9f7bsfl5zpvdshl8z";
stripRoot = false;
}}"
];
services.home-assistant = {
package = (pkgs.home-assistant.overrideAttrs (old: {
doInstallCheck = false;
})).override {
extraPackages = pp: [ pp.croniter ];
};
config.pyscript = {
allow_all_imports = true;
hass_is_global = true;
};
};
networking.firewall.interfaces.retiolum.allowedTCPPortRanges = [
{ from = 50321; to = 50341; } # for ipython interactive debugging
];
}

View file

@ -0,0 +1,51 @@
{ pkgs ? import <nixpkgs> {} }: let
hass_host = "styx.r";
hass_token = builtins.readFile ./hass_token;
mach-nix = import (builtins.fetchGit {
url = "https://github.com/DavHau/mach-nix/";
ref = "refs/tags/3.4.0";
}) {
pkgs = pkgs;
};
pyenv = mach-nix.mkPython {
requirements = ''
hass_pyscript_kernel
'';
};
jupyter = import (builtins.fetchGit {
url = https://github.com/tweag/jupyterWith;
ref = "master";
}) {};
pyscriptKernel = {
spec = pkgs.runCommand "pyscript" {} ''
mkdir -p $out/kernels/pyscript
cp ${kernel_json} $out/kernels/pyscript/kernel.json
cp ${pyscript_conf} $out/kernels/pyscript/pyscript.conf
'';
runtimePackages = [ pyenv ];
};
kernel_json = pkgs.writeText "kernel.json" (builtins.toJSON {
argv = [
"${pyenv}/bin/python3" "-m" "hass_pyscript_kernel"
"-f" "{connection_file}"
];
display_name = "hass_pyscript";
language = "python";
});
pyscript_conf = pkgs.writeText "pyscript.conf" ''
[homeassistant]
hass_host = ${hass_host}
hass_url = http://''${hass_host}:8123
hass_token = ${hass_token}
'';
jupyterEnvironment = jupyter.jupyterlabWith {
kernels = [ pyscriptKernel ];
};
in jupyterEnvironment.env