python312Packages.pyngrok: refactor

This commit is contained in:
Weijia Wang
2024-12-16 23:59:16 +01:00
parent 0f7848bc25
commit 904cc2b803
@@ -19,17 +19,21 @@ buildPythonPackage rec {
hash = "sha256-UJIbCcsQzKmFeH8gvfxFVN4ovT7eCnSHBsCCooInm/E=";
};
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 ];
};
}