base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / games / mymcplus / default.nix
blob9fa3c779785208e51f28645f3bb3e13ff9d0895f
1 { lib
2 , fetchFromSourcehut
3 , pythonPackages
4 , wrapGAppsHook3
5 }:
7 pythonPackages.buildPythonApplication rec {
8   pname = "mymcplus";
9   version = "3.0.5";
11   src = fetchFromSourcehut {
12     owner = "~thestr4ng3r";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-GFReOgM8zi5oyePpJm5HxtizUVqqUUINTRwyG/LGWB8=";
16   };
18   nativeBuildInputs = [
19     wrapGAppsHook3
20   ];
22   propagatedBuildInputs = with pythonPackages; [
23     pyopengl
24     wxpython
25   ];
27   meta = with lib; {
28     homepage = "https://git.sr.ht/~thestr4ng3r/mymcplus";
29     description = "PlayStation 2 memory card manager";
30     mainProgram = "mymcplus";
31     license = licenses.gpl3Plus;
32     maintainers = [ ];
33   };