python312Packages.dukpy: mark as broken on clang platforms

https://github.com/amol-/dukpy/issues/82
This commit is contained in:
Gaetan Lepage
2025-03-02 00:07:59 +01:00
parent 3fcc133470
commit f82b910f02
@@ -1,5 +1,6 @@
{
lib,
stdenv,
fetchFromGitHub,
buildPythonPackage,
setuptools,
@@ -55,5 +56,8 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ruby0b ];
mainProgram = "dukpy";
# error: 'TARGET_OS_BRIDGE' is not defined, evaluates to 0 [-Werror,-Wundef-prefix=TARGET_OS_]
# https://github.com/amol-/dukpy/issues/82
broken = stdenv.cc.isClang;
};
}