summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/explorerscript
diff options
context:
space:
mode:
authorKonrad Borowski <konrad@borowski.pw>2021-05-30 21:56:07 +0200
committerKonrad Borowski <konrad@borowski.pw>2021-05-30 21:56:07 +0200
commitc71b9d7e0aeb3b7cd1deab0f1cfaf3cf75da3bca (patch)
treef0f40258403ce360d772b2dceffd0d24b1c75734 /pkgs/development/python-modules/explorerscript
parentMerge pull request #124942 from yanganto/gitui-16 (diff)
downloadnixpkgs-c71b9d7e0aeb3b7cd1deab0f1cfaf3cf75da3bca.tar.gz
python3Packages.explorerscript: init at 1.2.3
Diffstat (limited to 'pkgs/development/python-modules/explorerscript')
-rw-r--r--pkgs/development/python-modules/explorerscript/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/explorerscript/default.nix b/pkgs/development/python-modules/explorerscript/default.nix
new file mode 100644
index 000000000000..b0f1a16fe421
--- /dev/null
+++ b/pkgs/development/python-modules/explorerscript/default.nix
@@ -0,0 +1,23 @@
+{ lib, buildPythonPackage, fetchFromGitHub, antlr4-python3-runtime, pygments, python-igraph }:
+
+buildPythonPackage rec {
+ pname = "explorerscript";
+ version = "0.1.1";
+
+ src = fetchFromGitHub {
+ owner = "SkyTemple";
+ repo = pname;
+ rev = version;
+ sha256 = "1vzyliiyrxx8l9sfbqcyr4xn5swd7znkxy69kn0vb5rban8hm9c1";
+ };
+
+ propagatedBuildInputs = [ antlr4-python3-runtime python-igraph ];
+ checkInputs = [ pygments ];
+
+ meta = with lib; {
+ homepage = "https://github.com/SkyTemple/explorerscript";
+ description = "A programming language + compiler/decompiler for creating scripts for Pokémon Mystery Dungeon Explorers of Sky";
+ license = licenses.mit;
+ maintainers = with maintainers; [ xfix ];
+ };
+}