steamback: init at 0.3.6
This commit is contained in:
parent
3ae20aa58a
commit
906c716d22
61
pkgs/tools/games/steamback/default.nix
Normal file
61
pkgs/tools/games/steamback/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -37400,6 +37400,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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user