nixpkgs/pkgs/development/python-modules/python-yate/default.nix
Martin Weinelt fd1ae1b22b python3Packages.python-yate: 0.4.1 -> 0.5.0
https://github.com/eventphone/python-yate/releases/tag/v0.5.0

This commit was automatically generated using update-python-libraries.
2026-02-01 17:20:10 +01:00

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 ];
};
}