itstool: fix cross, fix python warnings (#395150)

This commit is contained in:
Colin
2025-04-03 16:54:57 +00:00
committed by GitHub
+27 -8
View File
@@ -2,7 +2,10 @@
stdenv,
lib,
fetchurl,
fetchpatch,
python3,
autoreconfHook,
versionCheckHook,
}:
stdenv.mkDerivation rec {
@@ -14,16 +17,29 @@ stdenv.mkDerivation rec {
hash = "sha256-a5p80poSu5VZj1dQ6HY87niDahogf4W3TYsydbJ+h8o=";
};
strictDeps = true;
nativeBuildInputs = [
python3
python3.pkgs.wrapPython
patches = [
# https://github.com/itstool/itstool/pull/51
(fetchpatch {
name = "fix-insufficiently-quoted-regular-expressions-pr51";
url = "https://github.com/itstool/itstool/commit/19f9580f27aa261ea383b395fdef7e153f3f9e6d.patch";
hash = "sha256-5J4mRXQu24o2rqVtaXN/ETgj6A8R0Ym+YkZhqhZTzIc=";
})
];
buildInputs = [
python3
python3.pkgs.libxml2
strictDeps = true;
postPatch = ''
# Do not let autoconf find Python, but set it directly. This fixes cross-compilation.
substituteInPlace configure.ac \
--replace-fail 'AM_PATH_PYTHON([2.6])' "" \
--replace-fail 'AC_MSG_ERROR(Python module $py_module is needed to run this package)' ""
substituteInPlace itstool.in \
--replace-fail "@PYTHON@" "${python3.interpreter}"
'';
nativeBuildInputs = [
autoreconfHook
python3.pkgs.wrapPython
];
pythonPath = [
@@ -34,6 +50,9 @@ stdenv.mkDerivation rec {
wrapPythonPrograms
'';
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
meta = {
homepage = "https://itstool.org/";
description = "XML to PO and back again";