Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / dungeon-eos / default.nix
blob9f357168b0b5e55d802968e8dea76b41e61d6c3d
1 { lib, buildPythonPackage, fetchFromGitHub }:
3 buildPythonPackage rec {
4   pname = "dungeon-eos";
5   version = "0.0.5";
6   format = "setuptools";
8   src = fetchFromGitHub {
9     owner = "SkyTemple";
10     repo = pname;
11     rev = version;
12     hash = "sha256-Z1fGtslXP8zcZmVeWjRrbcM2ZJsfbrWjpLWZ49uSCRY=";
13   };
15   doCheck = false; # there are no tests
16   pythonImportsCheck = [ "dungeon_eos" ];
18   meta = with lib; {
19     homepage = "https://github.com/SkyTemple/dungeon-eos";
20     description = "A package that simulates PMD EoS dungeon generation";
21     license = licenses.gpl3Plus;
22     maintainers = with maintainers; [ marius851000 ];
23   };