Files
nixpkgs/pkgs/development/python-modules/httpx/setup-hook.sh

8 lines
133 B
Bash

httpxSslCertFileUnset() {
if [ ! -e "${SSL_CERT_FILE-}" ]; then
unset SSL_CERT_FILE
fi
}
postHooks+=(httpxSslCertFileUnset)