python310Packages.aioxmpp: init at 0.13.3

This commit is contained in:
Robert Schütz 2023-02-25 20:14:56 -08:00 committed by Robert Schütz
parent 6025563be6
commit d71893657d
2 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,68 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, aiosasl
, aioopenssl
, babel
, dnspython
, lxml
, multidict
, pyasn1
, pyasn1-modules
, pyopenssl
, sortedcollections
, tzlocal
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "aioxmpp";
version = "0.13.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "horazont";
repo = "aioxmpp";
rev = "refs/tags/v${version}";
hash = "sha256-bQPKEM5eKhFI3Kx3U1espdxqjnG4yUgOXmYCrd98PDo=";
};
propagatedBuildInputs = [
aiosasl
aioopenssl
babel
dnspython
lxml
multidict
pyasn1
pyasn1-modules
pyopenssl
sortedcollections
tzlocal
];
pythonImportsCheck = [
"aioxmpp"
"aioxmpp.node"
"aioxmpp.security_layer"
"aioxmpp.stanza"
"aioxmpp.stream"
];
nativeCheckInputs = [
pytestCheckHook
];
disabledTestPaths = [
"benchmarks"
];
meta = {
changelog = "https://github.com/horazont/aioxmpp/blob/${src.rev}/docs/api/changelog.rst";
description = "Pure-python XMPP library for asyncio";
homepage = "https://github.com/horazont/aioxmpp";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@ -372,6 +372,8 @@ self: super: with self; {
aiowinreg = callPackage ../development/python-modules/aiowinreg { };
aioxmpp = callPackage ../development/python-modules/aioxmpp { };
aioymaps = callPackage ../development/python-modules/aioymaps { };
aiozeroconf = callPackage ../development/python-modules/aiozeroconf { };