2023-04-29 16:46:19 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, buildPythonPackage
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, setuptools
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
#This package is auto-generated. It could totally be possible to generate it from upstream, but seems unecessary
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "pmdsky-debug-py";
|
2024-01-02 11:29:13 +00:00
|
|
|
|
version = "8.0.4";
|
|
|
|
|
pyproject = true;
|
2023-04-29 16:46:19 +00:00
|
|
|
|
# SkyTemple specifically require this version. This is used when patching the binary,
|
|
|
|
|
# and risk to be a bit problematic if using the latest version, given it doesn’t follow semver.
|
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "SkyTemple";
|
|
|
|
|
repo = pname;
|
|
|
|
|
rev = version;
|
2024-01-02 11:29:13 +00:00
|
|
|
|
sha256 = "sha256-D81vXhYGxwvy26PvicniCLiS58LmrSP9ppzXKRzQSJc=";
|
2023-04-29 16:46:19 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
prePatch = "cd src";
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
|
description = "Autogenerated and statically check-able pmdsky-debug symbol definitions for Python";
|
|
|
|
|
homepage = "https://github.com/SkyTemple/pmdsky-debug-py";
|
|
|
|
|
license = licenses.mit;
|
2024-01-02 11:29:13 +00:00
|
|
|
|
maintainers = with maintainers; [ marius851000 xfix ];
|
2023-04-29 16:46:19 +00:00
|
|
|
|
};
|
|
|
|
|
}
|