| 30 Mar 2025 |
K900 | Though the UX for that is ... not very good | 09:59:40 |
continous | I'll try git-ps | 10:00:38 |
continous | Also I just noticed I forgot to update the git and license stuff too lol | 10:01:00 |
continous | Anyways I'll need to shelf it for a short bit and finish my work. | 10:02:13 |
continous | When using SRI instead, should I use sri = instead of sha256 = ? | 10:37:00 |
Lucy | just use hash? | 10:39:58 |
continous | I didn't know that was an option, thanks ^-^ | 10:40:19 |
Lucy | i think that this will become more the standard | 10:40:45 |
continous | That I think makes it more intuitive. From my perspective at least. | 10:41:09 |
continous | I think I've resolved all the issues on my PR. | 13:10:49 |
K900 | In reply to @continous:matrix.org I think I've resolved all the issues on my PR. CI is red | 13:11:36 |
K900 | (and for good reason) | 13:11:47 |
continous | Did I forget a ; lol | 13:21:24 |
K900 | I would highly recommend getting your text editor set up with syntax highlighting | 13:25:03 |
K900 | So you can catch these things before you push | 13:25:09 |
K900 | Also, you can try building it locally first | 13:25:50 |
K900 | With something like nix-build -A python312Packages.decora-wifi | 13:25:59 |
continous | I just didn't notice, which is my bad. I missed a whole bracket end | 13:26:47 |
| dustee joined the room. | 22:07:41 |
| 31 Mar 2025 |
| evolve joined the room. | 08:45:16 |
dustee | how do i call a local package.nix which is a buildHomeAssistantComponent ?
customComponents = with pkgs.home-assistant-custom-components; [
ntfy
(pkgs.callPackage ./gree-alternative/package.nix {}) # tried this but error
];
'lib.customisation.callPackageWith: Function called without required argument "pycryptodome" # callPackage doesnt seem to fill in the python dependencies
| 12:07:30 |
dustee | * how do i call a local package.nix which is a buildHomeAssistantComponent ?
customComponents = with pkgs.home-assistant-custom-components; [
ntfy
(pkgs.callPackage ./gree-alternative/package.nix {}) # tried this but error
];
'lib.customisation.callPackageWith: Function called without required argument "pycryptodome"
callPackage doesnt seem to fill in the python dependencies
| 12:08:30 |
@hexa:lossy.network | config.services.home-assistant.package.callPackage | 12:13:26 |
@hexa:lossy.network | * config.services.home-assistant.package.callPackage | 12:13:29 |
@hexa:lossy.network | * config.services.home-assistant.package.python.callPackage | 12:13:44 |
continous | Any idea why it is that pythonImportsCheck would fail? | 12:18:36 |
continous | Actually, I may have figured it out. | 12:19:21 |
dustee | error: attribute 'callPackage' missing
| 12:20:06 |
dustee | * customComponents = [
(config.services.home-assistant.package.python.callPackage ./gree-alternative/package.nix {})
];
error: attribute 'callPackage' missing
| 12:20:29 |
@hexa:lossy.network | huh | 12:20:55 |