Merge pull request #256192 from wegank/pyngrok-bump

python310Packages.pyngrok: 6.0.0 -> 6.1.2
This commit is contained in:
Weijia Wang 2023-09-20 16:00:00 +02:00 committed by GitHub
commit ad79d7a5fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,20 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, pyyaml
}:
buildPythonPackage rec {
pname = "pyngrok";
version = "6.0.0";
version = "6.1.2";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-3YqHlEuOKFcuPRJr+yyBopSFlFdfUjfu/TZRrgtIcVU=";
hash = "sha256-9fT2fnntBQ7y+c52tuqHM7iVAqoLgwAs6izmuZRUNiI=";
};
propagatedBuildInputs = [
@ -20,8 +24,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pyngrok" ];
meta = with lib; {
homepage = "https://github.com/alexdlaird/pyngrok";
description = "A 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 ];
};