A python-keyring backend for the 'pass' password manager.
python setup.py install
First find the platform-specific directory location to place the configuration file:
config_root=$(python -c "import keyring.util.platform_; print(keyring.util.platform_.config_root())")
echo "[backend]
default-keyring=passkeyring.PassKeyring" > $config_root/keyringrc.cfg
import keyring
from passkeyring import PassKeyring
keyring.set_keyring(PassKeyring())
And the rest is the same as usual.