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
Pandapip1 committed Sep 16, 2024
1 parent 09fab5e commit aca4d64
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/by-name/st/steamctl/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
lib,
python3Packages,
fetchFromGitHub,
}:

python3Packages.buildPythonApplication rec {
pname = "steamctl";
version = "0.9.5";
pyproject = true;

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

build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
steam
appdirs
argcomplete
tqdm
arrow
pyqrcode
vpk
beautifulsoup4
];

meta = {
description = "A CLI utility to interface with Steam";
homepage = "https://github.com/ValvePython/steamctl"; # GitHub's homepage is set to PyPi listing, PyPi listing's homepage is set to GitHub
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pandapip1 ];
};
}

0 comments on commit aca4d64

Please sign in to comment.