python3Packages.explorerscript: init at 1.2.3

This commit is contained in:
Konrad Borowski
2021-05-30 21:56:07 +02:00
parent 92644de0c2
commit c71b9d7e0a
2 changed files with 25 additions and 0 deletions
@@ -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 ];
};
}