Merge pull request #256192 from wegank/pyngrok-bump

python310Packages.pyngrok: 6.0.0 -> 6.1.2

authored by

Weijia Wang and committed by
GitHub
ad79d7a5 e953cd6f

+8 -3
+8 -3
pkgs/development/python-modules/pyngrok/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 , pyyaml 5 }: 6 7 buildPythonPackage rec { 8 pname = "pyngrok"; 9 - version = "6.0.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - hash = "sha256-3YqHlEuOKFcuPRJr+yyBopSFlFdfUjfu/TZRrgtIcVU="; 14 }; 15 16 propagatedBuildInputs = [ ··· 20 pythonImportsCheck = [ "pyngrok" ]; 21 22 meta = with lib; { 23 homepage = "https://github.com/alexdlaird/pyngrok"; 24 - description = "A Python wrapper for ngrok"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ wegank ]; 27 };
··· 1 { lib 2 , buildPythonPackage 3 + , pythonOlder 4 , fetchPypi 5 , pyyaml 6 }: 7 8 buildPythonPackage rec { 9 pname = "pyngrok"; 10 + version = "6.1.2"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.8"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-9fT2fnntBQ7y+c52tuqHM7iVAqoLgwAs6izmuZRUNiI="; 18 }; 19 20 propagatedBuildInputs = [ ··· 24 pythonImportsCheck = [ "pyngrok" ]; 25 26 meta = with lib; { 27 + description = "A Python wrapper for ngrok"; 28 homepage = "https://github.com/alexdlaird/pyngrok"; 29 + changelog = "https://github.com/alexdlaird/pyngrok/blob/${version}/CHANGELOG.md"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ wegank ]; 32 };