move python-steam

This commit is contained in:
mjallen18
2025-08-21 14:26:50 -05:00
parent 783a7a3390
commit 92b04773b2
2 changed files with 17 additions and 16 deletions

View File

@@ -0,0 +1,16 @@
{ python3Packages, fetchPypi, ... }:
python3Packages.buildPythonPackage rec {
pname = "steam";
version = "1.4.4";
pyproject = false;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-K1vWkRwNSnMS9EG40WK52NR8i+u478bIhnOTsDI/pS4=";
};
buildInputs = with python3Packages; [ setuptools ];
doCheck = false; # no tests in the PyPI tarball
}