nixpkgs/pkgs/tools/games/steamback/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

67 lines
1.1 KiB
Nix

{ lib
, buildPythonApplication
, fetchPypi
, pythonRelaxDepsHook
, setuptools
, setuptools-scm
, wheel
, 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
setuptools-scm
wheel
];
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";
mainProgram = "steamback";
homepage = "https://github.com/geeksville/steamback";
license = licenses.gpl3;
maintainers = with maintainers; [ AngryAnt ];
};
}