#!/bin/sh

MAKEDEPS="python"


PKG_VER=23.13.1
SOURCE=https://files.pythonhosted.org/packages/source/k/keyring/keyring-$PKG_VER.tar.gz
MAKEDEPS="python"
DEPS="python-secretstorage"
DESC="Store and access your passwords safely."

build() {
    python -m build --no-isolation --wheel
}

package () {
    python -m installer -d "$PKG_DEST" dist/keyring-$PKG_VER-py3-none-any.whl
}