mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 08:44:09 +01:00
https://github.com/eventphone/python-yate/releases/tag/v0.5.0 This commit was automatically generated using update-python-libraries.
39 lines
874 B
Nix
39 lines
874 B
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
async-timeout,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-yate";
|
|
version = "0.5.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eventphone";
|
|
repo = "python-yate";
|
|
tag = "v${version}";
|
|
hash = "sha256-/tlDme4RmO9XH5PNTvK2yVzbF+iDNeCY21nArq6NU+g=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
async-timeout
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "yate" ];
|
|
|
|
meta = {
|
|
description = "Python library for the yate telephony engine";
|
|
mainProgram = "yate_callgen";
|
|
homepage = "https://github.com/eventphone/python-yate";
|
|
changelog = "https://github.com/eventphone/python-yate/releases/tag/${src.tag}";
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [ clerie ];
|
|
};
|
|
}
|