biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / python-yate / default.nix
blob6207b13381e80e0b62fa145acef81e06094ae8d2
2   lib,
3   aiohttp,
4   async-timeout,
5   buildPythonPackage,
6   fetchFromGitHub,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "python-yate";
12   version = "0.4.1";
13   format = "setuptools";
15   src = fetchFromGitHub {
16     owner = "eventphone";
17     repo = "python-yate";
18     rev = "refs/tags/v${version}";
19     hash = "sha256-AdnlNsEOFuzuGTBmfV9zKyv2iFHEJ4eLMrC6SHHf7m0=";
20   };
22   propagatedBuildInputs = [
23     aiohttp
24     async-timeout
25   ];
27   nativeCheckInputs = [ pytestCheckHook ];
29   pythonImportsCheck = [ "yate" ];
31   meta = with lib; {
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 ];
38   };