python3Packages.pyngrok: 7.5.1 -> 8.0.0 (#506850)

This commit is contained in:
Nick Cao
2026-04-06 21:37:54 +00:00
committed by GitHub
@@ -6,31 +6,27 @@
pyyaml,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyngrok";
version = "7.5.1";
version = "8.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-k07IqJms6Oxhw5EgonqCEq60ApPK0vT/yKPRpLtqjWw=";
inherit (finalAttrs) pname version;
hash = "sha256-bnqvkLQwhq0lUIoRIkI2CAA/cS2ZiDGd33vlBDECgQE=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
pyyaml
];
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";
changelog = "https://github.com/alexdlaird/pyngrok/blob/${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ wegank ];
};
}
})