5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
43 lines
839 B
Nix
43 lines
839 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pillow
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, skytemple-files
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "skytemple-dtef";
|
|
version = "1.6.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SkyTemple";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-vVh4WRjx/iFJnTZC7D/OCi0gOwKaXs/waVXUEu5Cda8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pillow
|
|
skytemple-files
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"skytemple_dtef"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A format for standardized rule-based tilesets with 256 adjacency combinations";
|
|
homepage = "https://github.com/SkyTemple/skytemple-dtef";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ marius851000 ];
|
|
};
|
|
}
|