Merge pull request #231659 from AngryAnt/steamback/init

This commit is contained in:
Janik 2023-06-27 09:47:48 +02:00 committed by GitHub
commit 4f800142c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,61 @@
{ lib
, buildPythonApplication
, fetchPypi
, pythonRelaxDepsHook
, setuptools
, pillow
, psutil
, async-tkinter-loop
, timeago
, platformdirs
, sv-ttk
}:
buildPythonApplication rec {
pname = "steamback";
version = "0.3.6";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-hvMPSxIfwwQqo80JCpYhcbVY4kXs5jWtjjafVSMrw6o=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
buildInputs = [
setuptools
pillow
];
propagatedBuildInputs = [
psutil
async-tkinter-loop
timeago
platformdirs
sv-ttk
];
pythonRelaxDeps = [
"async-tkinter-loop"
"platformdirs"
"Pillow"
];
checkPhase = ''
runHook preCheck
$out/bin/${pname} --help
runHook postCheck
'';
meta = with lib; {
description = "A Decky plugin to add versioned save-game snapshots to Steam-cloud enabled games";
homepage = "https://github.com/geeksville/steamback";
license = licenses.gpl3;
maintainers = with maintainers; [ AngryAnt ];
};
}

View file

@ -37485,6 +37485,8 @@ with pkgs;
steam-acf = callPackage ../tools/games/steam-acf { };
steamback = python311.pkgs.callPackage ../tools/games/steamback { };
protontricks = python3Packages.callPackage ../tools/package-management/protontricks {
inherit winetricks steam-run yad;
};