python3Packages.steam: init at 1.4.4

This commit is contained in:
quartz
2025-07-12 11:45:21 -04:00
parent 1de95f9df3
commit 009e813a48
2 changed files with 52 additions and 0 deletions
@@ -0,0 +1,50 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
six,
pycryptodomex,
requests,
urllib3,
vdf,
gevent,
protobuf,
gevent-eventemitter,
cachetools,
setuptools,
}:
buildPythonPackage rec {
pname = "steam";
version = "1.4.4";
pyproject = true;
src = fetchFromGitHub {
owner = "ValvePython";
repo = "steam";
rev = "v${version}";
hash = "sha256-OY04GsX3KMPvpsQl8sUurzFyJu+JKpES8B0iD6Z5uyw=";
};
build-system = [ setuptools ];
dependencies = [
six
pycryptodomex
requests
urllib3
vdf
gevent
protobuf
gevent-eventemitter
cachetools
];
meta = {
description = "Python package for interacting with Steam";
homepage = "https://github.com/ValvePython/steam";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ weirdrock ];
};
}
+2
View File
@@ -17182,6 +17182,8 @@ self: super: with self; {
stdlibs = callPackage ../development/python-modules/stdlibs { };
steam = callPackage ../development/python-modules/steam { };
steamodd = callPackage ../development/python-modules/steamodd { };
steamship = callPackage ../development/python-modules/steamship { };