Skip to content

Commit

Permalink
steamctl: init at 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwilsdon committed Nov 11, 2024
1 parent 66c88b6 commit 7f1ff0a
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions pkgs/by-name/st/steamctl/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
fetchFromGitHub,
lib,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "steamctl";
version = "0.9.5";

src = fetchFromGitHub {
owner = "ValvePython";
repo = "steamctl";
rev = "refs/tags/v${version}";
hash = "sha256-reNch5MP31MxyaeKUlANfizOXZXjtIDeSM1kptsWqkc=";
};

build-system = [ python3.pkgs.setuptools ];

dependencies =
with python3.pkgs;
[
appdirs
argcomplete
arrow
beautifulsoup4
pyqrcode
steam
tqdm
vpk
]
++ steam.optional-dependencies.client;

pythonImportsCheck = [ "steamctl" ];

meta = {
description = "Take control of Steam from your terminal";
longDescription = ''
steamctl is an open-source CLI utility similar to steamcmd.
It provides access to a number of Steam features and data from the command line.
While it is possible to download apps and content from Steam, steamctl is not a game launcher.
'';
homepage = "https://github.com/ValvePython/steamctl";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jackwilsdon ];
mainProgram = "steamctl";
};
}

0 comments on commit 7f1ff0a

Please sign in to comment.