summary refs log tree commit diff
path: root/pkgs/development/python-modules/skytemple-dtef/default.nix
blob: 24812deb1f9edca04759e9480d9f8f7de9bbe757 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildPythonPackage, fetchFromGitHub, skytemple-files }:

buildPythonPackage rec {
  pname = "skytemple-dtef";
  version = "1.1.4";

  src = fetchFromGitHub {
    owner = "SkyTemple";
    repo = pname;
    rev = version;
    sha256 = "0l2b66z5ngyas3ijbzwz2wizw46kz47f8jr729pzbg4wbqbqjihr";
  };

  propagatedBuildInputs = [ skytemple-files ];

  doCheck = false; # there are no tests
  pythonImportsCheck = [ "skytemple_dtef" ];

  meta = with lib; {
    homepage = "https://github.com/SkyTemple/skytemple-dtef";
    description = "A format for standardized rule-based tilesets with 256 adjacency combinations";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ xfix ];
  };
}