python steam or something

This commit is contained in:
mjallen18
2025-02-27 12:17:56 -06:00
parent f58b178d64
commit 6597f93bec
2 changed files with 17 additions and 0 deletions

View File

@@ -95,6 +95,7 @@ in
vim
htop
git
protonmail-bridge
];
services.openssh.enable = true;

View File

@@ -95,6 +95,22 @@ let
cp -r custom_components/wyzeapi $out/custom_components/
'';
};
# In configuration.nix or a separate file
pythonPackages.steam = pythonPackages.buildPythonPackage rec {
pname = "steam";
version = "1.4.4"; # Use the appropriate version
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = lib.fakeHash; # Add the correct SHA hash
};
# Dependencies if needed
propagatedBuildInputs = with pythonPackages; [
# Add dependencies
];
};
in
{
services.home-assistant = {