65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonApplication,
|
|
fetchPypi,
|
|
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 = [
|
|
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 = "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 ];
|
|
};
|
|
}
|