I had the same question maybe more from a conceptual standpoint so I thought I'd add my own answer and a question that will hopefully add some pedagogical value to the thread. I'm not trying to be pedantic, just trying to better understand git. The other answers clearly show how to perform the required task.
No, it is not possible to cherry-pick directly from another git
repository. One can only cherry-pick from one local branch onto
another. If you need to pull changes from another repo, then first
pull in (or fetch) that remote branch to your local repo, then
interact with the local copy of that branch.
Is this statement correct? I suppose git is designed to only allow fetch/pull interactions between repositories as a safety mechanism?