mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
Merge pull request #256192 from wegank/pyngrok-bump
python310Packages.pyngrok: 6.0.0 -> 6.1.2
This commit is contained in:
commit
ad79d7a5fc
@ -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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user