python3Packages.dungeon-eos: init at 0.0.4

This commit is contained in:
Konrad Borowski 2021-09-10 21:17:54 +02:00
parent 185c0820f0
commit 18e19d4b5a
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
pname = "dungeon-eos";
version = "0.0.4";
src = fetchFromGitHub {
owner = "SkyTemple";
repo = pname;
rev = version;
sha256 = "0hxygjk9i4qlwsxnxr52cxhqy3i62pc373z1x5sh2pas5ag59bvl";
};
doCheck = false; # there are no tests
pythonImportsCheck = [ "dungeon_eos" ];
meta = with lib; {
homepage = "https://github.com/SkyTemple/dungeon-eos";
description = "A package that simulates PMD EoS dungeon generation";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ marius851000 xfix ];
};
}

View File

@ -2247,6 +2247,8 @@ in {
dulwich = callPackage ../development/python-modules/dulwich { };
dungeon-eos = callPackage ../development/python-modules/dungeon-eos { };
dwdwfsapi = callPackage ../development/python-modules/dwdwfsapi { };
dyn = callPackage ../development/python-modules/dyn { };