steam maybe
This commit is contained in:
@@ -97,21 +97,18 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
# In configuration.nix or a separate file
|
# In configuration.nix or a separate file
|
||||||
pythonPackages.steam = pythonPackages.buildPythonPackage rec {
|
pythonSteam = pkgs.python3.withPackages (ps: with ps; [
|
||||||
pname = "steam";
|
(ps.buildPythonPackage rec {
|
||||||
version = "1.4.4"; # Use the appropriate version
|
pname = "steam";
|
||||||
|
version = "1.4.4"; # Check for the latest version
|
||||||
src = pythonPackages.fetchPypi {
|
src = pkgs.fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = lib.fakeHash; # Add the correct SHA hash
|
sha256 = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; # Get the correct hash
|
||||||
};
|
};
|
||||||
|
doCheck = false;
|
||||||
# Dependencies if needed
|
propagatedBuildInputs = [ ps.requests ps.protobuf ];
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
})
|
||||||
# Add dependencies
|
]);
|
||||||
];
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
services.home-assistant = {
|
services.home-assistant = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user