Merge pull request #254410 from clerie/clerie/python-yate

authored by

Janik and committed by
GitHub
f0b0a2fa dada1c59

+43
+41
pkgs/development/python-modules/python-yate/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , async-timeout 4 + , buildPythonPackage 5 + , fetchFromGitHub 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "python-yate"; 11 + version = "0.4.1"; 12 + format = "setuptools"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "eventphone"; 16 + repo = "python-yate"; 17 + rev = "refs/tags/v${version}"; 18 + hash = "sha256-AdnlNsEOFuzuGTBmfV9zKyv2iFHEJ4eLMrC6SHHf7m0="; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + aiohttp 23 + async-timeout 24 + ]; 25 + 26 + nativeCheckInputs = [ 27 + pytestCheckHook 28 + ]; 29 + 30 + pythonImportsCheck = [ 31 + "yate" 32 + ]; 33 + 34 + meta = with lib; { 35 + description = "Python library for the yate telephony engine"; 36 + homepage = "https://github.com/eventphone/python-yate"; 37 + changelog = "https://github.com/eventphone/python-yate/releases/tag/v${version}"; 38 + license = with licenses; [ mit ]; 39 + maintainers = with maintainers; [ clerie ]; 40 + }; 41 + }
+2
pkgs/top-level/python-packages.nix
··· 7376 7376 7377 7377 python-nvd3 = callPackage ../development/python-modules/python-nvd3 { }; 7378 7378 7379 + python-yate = callPackage ../development/python-modules/python-yate { }; 7380 + 7379 7381 python-youtube = callPackage ../development/python-modules/python-youtube { }; 7380 7382 7381 7383 py-deprecate = callPackage ../development/python-modules/py-deprecate { };