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

Janik f0b0a2fa dada1c59

Changed files
+43
pkgs
development
python-modules
python-yate
top-level
+41
pkgs/development/python-modules/python-yate/default.nix
···
+
{ lib
+
, aiohttp
+
, async-timeout
+
, buildPythonPackage
+
, fetchFromGitHub
+
, pytestCheckHook
+
}:
+
+
buildPythonPackage rec {
+
pname = "python-yate";
+
version = "0.4.1";
+
format = "setuptools";
+
+
src = fetchFromGitHub {
+
owner = "eventphone";
+
repo = "python-yate";
+
rev = "refs/tags/v${version}";
+
hash = "sha256-AdnlNsEOFuzuGTBmfV9zKyv2iFHEJ4eLMrC6SHHf7m0=";
+
};
+
+
propagatedBuildInputs = [
+
aiohttp
+
async-timeout
+
];
+
+
nativeCheckInputs = [
+
pytestCheckHook
+
];
+
+
pythonImportsCheck = [
+
"yate"
+
];
+
+
meta = with lib; {
+
description = "Python library for the yate telephony engine";
+
homepage = "https://github.com/eventphone/python-yate";
+
changelog = "https://github.com/eventphone/python-yate/releases/tag/v${version}";
+
license = with licenses; [ mit ];
+
maintainers = with maintainers; [ clerie ];
+
};
+
}
+2
pkgs/top-level/python-packages.nix
···
python-nvd3 = callPackage ../development/python-modules/python-nvd3 { };
+
python-yate = callPackage ../development/python-modules/python-yate { };
+
python-youtube = callPackage ../development/python-modules/python-youtube { };
py-deprecate = callPackage ../development/python-modules/py-deprecate { };