{ lib, buildPythonPackage, fetchPypi, setuptools, pyyaml, }: buildPythonPackage rec { pname = "pyngrok"; version = "7.5.0"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-L+kcuiwlMez7EktQcfN3gIthpooUyjyZ/Lfz/a4FJ48="; }; build-system = [ setuptools ]; dependencies = [ pyyaml ]; pythonImportsCheck = [ "pyngrok" ]; meta = { description = "Python wrapper for ngrok"; homepage = "https://github.com/alexdlaird/pyngrok"; changelog = "https://github.com/alexdlaird/pyngrok/blob/${version}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ wegank ]; }; }