[Backport release-26.05] python3Packages.dlinfo: unbreak darwin (#552865)

This commit is contained in:
Ihar Hrachyshka
2026-08-15 23:10:33 +00:00
committed by GitHub

View File

@@ -25,12 +25,15 @@ buildPythonPackage rec {
pythonImportsCheck = [ "dlinfo" ];
# all tests are broken, see:
# https://github.com/fphammerle/python-dlinfo/pull/64
doCheck = !stdenv.hostPlatform.isDarwin;
meta = {
changelog = "https://github.com/fphammerle/python-dlinfo/blob/${src.tag}/CHANGELOG.md";
description = "Python wrapper for libc's dlinfo and dyld_find on Mac";
homepage = "https://github.com/fphammerle/python-dlinfo";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
broken = stdenv.hostPlatform.isDarwin;
};
}