mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
abec532124
Missing undeclared dependency.
71 lines
1.2 KiB
Nix
71 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, aiosasl
|
|
, aioopenssl
|
|
, babel
|
|
, dnspython
|
|
, lxml
|
|
, multidict
|
|
, pyasn1
|
|
, pyasn1-modules
|
|
, pyopenssl
|
|
, pytz
|
|
, 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
|
|
pytz
|
|
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 ];
|
|
};
|
|
}
|