nixpkgs/pkgs/development/python-modules/skytemple-dtef/default.nix
2021-06-06 13:06:01 +02:00

26 lines
704 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, skytemple-files }:
buildPythonPackage rec {
pname = "skytemple-dtef";
version = "1.1.3";
src = fetchFromGitHub {
owner = "SkyTemple";
repo = pname;
rev = version;
sha256 = "0hisg7gq6ph0as9vvx2p1h104bn6x2kx8y477p9zcqc71f3yrx82";
};
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 ];
};
}