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 | config.services.home-assistant.package.callPackage | 12:13:26 |
hexa | * config.services.home-assistant.package.callPackage | 12:13:29 |
hexa | * 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 | huh | 12:20:55 |
hexa | oh, one more! | 12:21:20 |
hexa | config.services.home-assistant.package.python.pkgs.callPackage | 12:21:30 |
dustee | that works, thank you | 12:22:10 |
continous | For some reason pythonImportsCheck is unable to provide requests, even though it is available in nixpkgs, and I have requests as an input. Any ideas? | 12:27:26 |
hexa | https://github.com/tlyakhov/python-decora_wifi/blob/faaff1ddf2e4c0676fa3bccfbf1639372694b4b5/setup.py#L26 | 12:29:06 |
hexa | per this you need to configure dependencies with requests and inflect | 12:29:26 |
continous | That's odd, someone commented removing the dependencies section on my code. | 12:30:16 |
hexa | checking | 12:34:08 |
hexa | have you tried building the package? | 12:35:03 |
hexa | decora_wifi/__init__.py
11:import requests
23: self._session = requests.Session()
| 12:35:16 |
hexa | because it surely requires requests | 12:35:23 |
continous | Yeah it doesn't build now and I couldn't figure out why. The original code worked with dependencies so I'm trying it with dependencies readded. | 12:36:18 |
continous | My sloppy built solution that I initial input had requests as a build input. | 12:37:25 |
continous | * My sloppy built solution that I initial submitted had requests as a build input. | 12:37:33 |
continous | Dependencies fix worked 👍️ | 12:38:39 |
continous | I didn't import inflect in my sloppy initial work, but I'm going to do so now just in case. | 12:39:01 |
continous | On a scale of 0-100 how bad is a commit with no changes 😅 | 12:50:21 |
K900 | Why would you make a commit with no changes? | 12:52:06 |
continous | To have the 3 requested commit messages. | 12:52:26 |