{ lib , fetchFromSourcehut , pythonPackages , wrapGAppsHook3 }: pythonPackages.buildPythonApplication rec { pname = "mymcplus"; version = "3.0.5"; src = fetchFromSourcehut { owner = "~thestr4ng3r"; repo = pname; rev = "v${version}"; sha256 = "sha256-GFReOgM8zi5oyePpJm5HxtizUVqqUUINTRwyG/LGWB8="; }; nativeBuildInputs = [ wrapGAppsHook3 ]; propagatedBuildInputs = with pythonPackages; [ pyopengl wxpython ]; meta = with lib; { homepage = "https://git.sr.ht/~thestr4ng3r/mymcplus"; description = "PlayStation 2 memory card manager"; mainProgram = "mymcplus"; license = licenses.gpl3Plus; maintainers = [ ]; }; }