Files
nixpkgs/pkgs/development/python-modules/skytemple-dtef/default.nix
2025-05-04 12:12:00 +02:00

44 lines
884 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pillow,
pytestCheckHook,
pythonOlder,
skytemple-files,
}:
buildPythonPackage rec {
pname = "skytemple-dtef";
version = "1.8.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "SkyTemple";
repo = "skytemple-dtef";
rev = version;
hash = "sha256-IsAHXl9HfjWDXi/n6Alndi+GnAr7pmbjz6wrBECra0Q=";
};
build-system = [ setuptools ];
dependencies = [
pillow
skytemple-files
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "skytemple_dtef" ];
meta = with lib; {
description = "Format for standardized rule-based tilesets with 256 adjacency combinations";
homepage = "https://github.com/SkyTemple/skytemple-dtef";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ marius851000 ];
};
}