python steam or something
This commit is contained in:
@@ -95,6 +95,7 @@ in
|
|||||||
vim
|
vim
|
||||||
htop
|
htop
|
||||||
git
|
git
|
||||||
|
protonmail-bridge
|
||||||
];
|
];
|
||||||
|
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
|||||||
@@ -95,6 +95,22 @@ let
|
|||||||
cp -r custom_components/wyzeapi $out/custom_components/
|
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
|
in
|
||||||
{
|
{
|
||||||
services.home-assistant = {
|
services.home-assistant = {
|
||||||
|
|||||||
Reference in New Issue
Block a user