lol

python311Packages.pysequoia: mark as broken on Darwin

+4
+4
pkgs/development/python-modules/pysequoia/default.nix
··· 11 , pcsclite 12 , stdenv 13 , darwin 14 }: 15 16 buildPythonPackage rec { ··· 46 ] ++ lib.optionals stdenv.isDarwin [ 47 darwin.apple_sdk.frameworks.CoreFoundation 48 darwin.apple_sdk.frameworks.Security 49 ]; 50 51 pythonImportsCheck = [ "pysequoia" ]; ··· 56 homepage = "https://sequoia-pgp.gitlab.io/pysequoia"; 57 license = licenses.asl20; 58 maintainers = with maintainers; [ doronbehar ]; 59 }; 60 }
··· 11 , pcsclite 12 , stdenv 13 , darwin 14 + , libiconv 15 }: 16 17 buildPythonPackage rec { ··· 47 ] ++ lib.optionals stdenv.isDarwin [ 48 darwin.apple_sdk.frameworks.CoreFoundation 49 darwin.apple_sdk.frameworks.Security 50 + libiconv 51 ]; 52 53 pythonImportsCheck = [ "pysequoia" ]; ··· 58 homepage = "https://sequoia-pgp.gitlab.io/pysequoia"; 59 license = licenses.asl20; 60 maintainers = with maintainers; [ doronbehar ]; 61 + # Broken since the 0.1.20 update according to ofborg. The errors are not clear... 62 + broken = stdenv.isDarwin; 63 }; 64 }