blob: 6b8749c2a2af6f4c0d05987b70cc2f63c7f88e5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pyyaml,
}:
buildPythonPackage rec {
pname = "pyngrok";
version = "7.5.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-L+kcuiwlMez7EktQcfN3gIthpooUyjyZ/Lfz/a4FJ48=";
};
build-system = [
setuptools
];
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";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ wegank ];
};
}
|