python3Packages.steampy: init at 1.2.1

This commit is contained in:
Artur Sannikov
2026-03-08 13:30:17 +02:00
parent 380e22c413
commit 53d447b930
2 changed files with 57 additions and 0 deletions
@@ -0,0 +1,55 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
beautifulsoup4,
requests,
rsa,
# tests
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "steampy";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "bukson";
repo = "steampy";
tag = finalAttrs.version;
hash = "sha256-dGcqJGRQ88vXy+x2U+ykutP4RnzTUqJlmhXmcr+4maE=";
};
build-system = [ setuptools ];
dependencies = [
beautifulsoup4
requests
rsa
];
pythonImportsCheck = [ "steampy" ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [
# Require Steam credentials
"test/test_client.py"
"test/test_guard.py"
"test/test_market.py"
];
meta = {
description = "Steam trading library";
homepage = "https://github.com/bukson/steampy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ artur-sannikov ];
};
})
+2
View File
@@ -18452,6 +18452,8 @@ self: super: with self; {
steamodd = callPackage ../development/python-modules/steamodd { };
steampy = callPackage ../development/python-modules/steampy { };
steamship = callPackage ../development/python-modules/steamship { };
steamworkspy = callPackage ../development/python-modules/steamworkspy { };