python312Packages.pyngrok: 7.2.1 -> 7.2.2 (#365719)

This commit is contained in:
Nick Cao
2024-12-17 10:16:33 -05:00
committed by GitHub
@@ -9,27 +9,31 @@
buildPythonPackage rec {
pname = "pyngrok";
version = "7.2.1";
version = "7.2.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-UJIbCcsQzKmFeH8gvfxFVN4ovT7eCnSHBsCCooInm/E=";
hash = "sha256-9ynOuiYYI6sR9hYlVgRTGu78O+roN3rBon1TNTLTvBo=";
};
nativeBuildInputs = [ setuptools ];
build-system = [
setuptools
];
propagatedBuildInputs = [ pyyaml ];
dependencies = [
pyyaml
];
pythonImportsCheck = [ "pyngrok" ];
meta = with lib; {
meta = {
description = "Python wrapper for ngrok";
homepage = "https://github.com/alexdlaird/pyngrok";
changelog = "https://github.com/alexdlaird/pyngrok/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ wegank ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ wegank ];
};
}