Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / dungeon-eos / default.nix
blobc8525c3fcb992595da33ed171951ab35f171b532
1 { lib, buildPythonPackage, fetchFromGitHub }:
3 buildPythonPackage rec {
4   pname = "dungeon-eos";
5   version = "0.0.5";
7   src = fetchFromGitHub {
8     owner = "SkyTemple";
9     repo = pname;
10     rev = version;
11     hash = "sha256-Z1fGtslXP8zcZmVeWjRrbcM2ZJsfbrWjpLWZ49uSCRY=";
12   };
14   doCheck = false; # there are no tests
15   pythonImportsCheck = [ "dungeon_eos" ];
17   meta = with lib; {
18     homepage = "https://github.com/SkyTemple/dungeon-eos";
19     description = "A package that simulates PMD EoS dungeon generation";
20     license = licenses.gpl3Plus;
21     maintainers = with maintainers; [ marius851000 xfix ];
22   };