make sure xcode is up to date with a C++ 11 compiler
xcode-select --install
install from brew brew install rocksdb
Create a virtual env and install depencies
python3 -m venv venv
source venv/bin/activate
pip install "Cython>=0.20"
In the following command don't forget to adjust the version number of your rocksdb installation
CFLAGS='-mmacosx-version-min=10.7 -stdlib=libc++' pip install --global-option=build_ext --global-option="-I/usr/local/Cellar/rocksdb/5.9.2_1/include" --global-option="-L/usr/local/Cellar/rocksdb/5.9.2_1/lib" git+git://github.com/twmht/python-rocksdb.git
enjoy!