about summary refs log tree commit diff
path: root/pkgs/games/pokete
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2022-06-16 17:18:31 +0200
committerFrancesco Gazzetta <fgaz@fgaz.me>2022-06-18 21:47:41 +0200
commit11c5f738289e335e72aa5d206a67fc6d15739e5e (patch)
treef7df570814575cdd06bfeadde2c31a78d2ad5139 /pkgs/games/pokete
parente36d99a5df9e4d0a706ca28d7c0ca10a1cc57537 (diff)
pokete: init at 0.7.2
Diffstat (limited to 'pkgs/games/pokete')
-rw-r--r--pkgs/games/pokete/default.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/pkgs/games/pokete/default.nix b/pkgs/games/pokete/default.nix
new file mode 100644
index 0000000000000..8ddea5cbbceaf
--- /dev/null
+++ b/pkgs/games/pokete/default.nix
@@ -0,0 +1,55 @@
+{ lib
+, python3
+, fetchFromGitHub
+, testers
+, pokete
+}:
+
+python3.pkgs.buildPythonApplication rec {
+  pname = "pokete";
+  version = "0.7.2";
+
+  format = "other";
+
+  src = fetchFromGitHub {
+    owner = "lxgr-linux";
+    repo = "pokete";
+    rev = version;
+    sha256 = "sha256-P6007qY6MsnQH4LGiNPoKCUt3+YI0OinKFdosaj3Wrc=";
+  };
+
+  pythonPath = with python3.pkgs; [
+    scrap-engine
+    pynput
+  ];
+
+  buildPhase = ''
+    ${python3.interpreter} -O -m compileall .
+  '';
+
+  installPhase = ''
+    mkdir -p $out/share/pokete
+    cp -r assets pokete_classes pokete_data mods *.py $out/share/pokete/
+    mkdir -p $out/bin
+    ln -s $out/share/pokete/pokete.py $out/bin/pokete
+  '';
+
+  postFixup = ''
+    wrapPythonProgramsIn $out/share/pokete "$pythonPath"
+  '';
+
+  passthru.tests = {
+    pokete-version = testers.testVersion {
+      package = pokete;
+      command = "pokete --help";
+    };
+  };
+
+  meta = with lib; {
+    description = "A terminal based Pokemon like game";
+    homepage = "https://lxgr-linux.github.io/pokete";
+    license = licenses.gpl3Only;
+    maintainers = with maintainers; [ fgaz ];
+    platforms = platforms.unix;
+  };
+}