My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/skytemple-dtef/default.nix

25 lines
704 B

{ 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 ];
};
}