10 buildPythonPackage rec {
11 pname = "python-yate";
13 format = "setuptools";
15 src = fetchFromGitHub {
18 rev = "refs/tags/v${version}";
19 hash = "sha256-AdnlNsEOFuzuGTBmfV9zKyv2iFHEJ4eLMrC6SHHf7m0=";
22 propagatedBuildInputs = [
27 nativeCheckInputs = [ pytestCheckHook ];
29 pythonImportsCheck = [ "yate" ];
32 description = "Python library for the yate telephony engine";
33 mainProgram = "yate_callgen";
34 homepage = "https://github.com/eventphone/python-yate";
35 changelog = "https://github.com/eventphone/python-yate/releases/tag/v${version}";
36 license = with licenses; [ mit ];
37 maintainers = with maintainers; [ clerie ];