1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5}:
6
7buildPythonPackage rec {
8 pname = "dungeon-eos";
9 version = "0.0.5";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 owner = "SkyTemple";
14 repo = "dungeon-eos";
15 rev = version;
16 hash = "sha256-Z1fGtslXP8zcZmVeWjRrbcM2ZJsfbrWjpLWZ49uSCRY=";
17 };
18
19 doCheck = false; # there are no tests
20 pythonImportsCheck = [ "dungeon_eos" ];
21
22 meta = with lib; {
23 homepage = "https://github.com/SkyTemple/dungeon-eos";
24 description = "Package that simulates PMD EoS dungeon generation";
25 license = licenses.gpl3Plus;
26 maintainers = with maintainers; [ marius851000 ];
27 };
28}