build-bazel-package: added rm of extra local folders for toolchain configuration...
[NixPkgs.git] / pkgs / tools / games / mymcplus / default.nix
blobb6623698d9c9cadc3224686bb187a683469a1d54
2   lib,
3   fetchFromSourcehut,
4   pythonPackages,
5   wrapGAppsHook3,
6 }:
8 pythonPackages.buildPythonApplication rec {
9   pname = "mymcplus";
10   version = "3.0.5";
12   src = fetchFromSourcehut {
13     owner = "~thestr4ng3r";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "sha256-GFReOgM8zi5oyePpJm5HxtizUVqqUUINTRwyG/LGWB8=";
17   };
19   nativeBuildInputs = [
20     wrapGAppsHook3
21   ];
23   propagatedBuildInputs = with pythonPackages; [
24     pyopengl
25     wxpython
26   ];
28   meta = with lib; {
29     homepage = "https://git.sr.ht/~thestr4ng3r/mymcplus";
30     description = "PlayStation 2 memory card manager";
31     mainProgram = "mymcplus";
32     license = licenses.gpl3Plus;
33     maintainers = [ ];
34   };