2023-04-29 16:46:19 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, appdirs
|
|
|
|
, dungeon-eos
|
|
|
|
, explorerscript
|
|
|
|
, ndspy
|
|
|
|
, pillow
|
|
|
|
, setuptools
|
|
|
|
, skytemple-rust
|
|
|
|
, tilequant
|
|
|
|
, pyyaml
|
|
|
|
, pmdsky-debug-py
|
|
|
|
, typing-extensions
|
|
|
|
, pythonOlder
|
|
|
|
, # optional dependancies for SpriteCollab
|
|
|
|
aiohttp
|
|
|
|
, lru-dict
|
|
|
|
, graphql-core
|
|
|
|
, gql
|
|
|
|
, armips
|
|
|
|
# tests
|
|
|
|
, pytestCheckHook
|
|
|
|
, parameterized
|
|
|
|
, xmldiff
|
2021-09-18 10:52:07 +00:00
|
|
|
}:
|
2021-06-04 09:07:49 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "skytemple-files";
|
2023-04-29 16:46:19 +00:00
|
|
|
version = "1.4.7";
|
2021-06-04 09:07:49 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SkyTemple";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-04-29 16:46:19 +00:00
|
|
|
hash = "sha256-SLRZ9ThrH2UWqfr5BbjJKDM/SRkCfMNK70XZT4+Ks7w=";
|
2021-06-28 23:13:55 +00:00
|
|
|
fetchSubmodules = true;
|
2021-06-04 09:07:49 +00:00
|
|
|
};
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace skytemple_files/patch/arm_patcher.py \
|
|
|
|
--replace "exec_name = os.getenv('SKYTEMPLE_ARMIPS_EXEC', f'{prefix}armips')" "exec_name = \"${armips}/bin/armips\""
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ armips ];
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
appdirs
|
|
|
|
dungeon-eos
|
|
|
|
explorerscript
|
|
|
|
ndspy
|
|
|
|
pillow
|
|
|
|
setuptools
|
|
|
|
skytemple-rust
|
|
|
|
tilequant
|
|
|
|
pyyaml
|
|
|
|
pmdsky-debug-py
|
|
|
|
] ++ lib.optionals (pythonOlder "3.9") [
|
|
|
|
typing-extensions
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru.optional-dependencies = {
|
|
|
|
spritecollab = [
|
|
|
|
aiohttp
|
|
|
|
gql
|
|
|
|
graphql-core
|
|
|
|
lru-dict
|
|
|
|
] ++ gql.optional-dependencies.aiohttp;
|
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook parameterized xmldiff ] ++ passthru.optional-dependencies.spritecollab;
|
|
|
|
pytestFlagsArray = "test/";
|
|
|
|
disabledTestPaths = [
|
|
|
|
"test/skytemple_files_test/common/spritecollab/sc_online_test.py"
|
|
|
|
"test/skytemple_files_test/compression_container/atupx/atupx_test.py" # Particularly long test
|
|
|
|
];
|
2021-06-04 09:07:49 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [ "skytemple_files" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/SkyTemple/skytemple-files";
|
|
|
|
description = "Python library to edit the ROM of Pokémon Mystery Dungeon Explorers of Sky";
|
|
|
|
license = licenses.gpl3Plus;
|
2021-06-28 23:13:55 +00:00
|
|
|
maintainers = with maintainers; [ xfix marius851000 ];
|
2022-05-18 14:49:53 +00:00
|
|
|
broken = stdenv.isDarwin; # pyobjc is missing
|
2021-06-04 09:07:49 +00:00
|
|
|
};
|
|
|
|
}
|