Files
nixpkgs/pkgs/development/python-modules/pubnub/default.nix

79 lines
1.4 KiB
Nix

{
lib,
aiohttp,
buildPythonPackage,
busypie,
cbor2,
fetchFromGitHub,
h2,
httpx,
pycryptodomex,
pytest-asyncio,
pytest-vcr,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "pubnub";
version = "10.4.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pubnub";
repo = "python";
tag = version;
hash = "sha256-NI7rEudQ5sSj6cpPpFxEcqaeiQL6dJKK7C53BTJeMAg=";
};
pythonRelaxDeps = [ "httpx" ];
build-system = [ setuptools ];
dependencies = [
aiohttp
cbor2
h2
httpx
pycryptodomex
requests
];
nativeCheckInputs = [
busypie
pytest-asyncio
pytest-vcr
pytestCheckHook
];
disabledTestPaths = [
# Tests require network access
"tests/integrational"
"tests/manual"
"tests/functional/push"
# Examples
"tests/examples"
];
disabledTests = [
"test_subscribe"
"test_handshaking"
];
pythonImportsCheck = [ "pubnub" ];
meta = with lib; {
description = "Python-based APIs for PubNub";
homepage = "https://github.com/pubnub/python";
changelog = "https://github.com/pubnub/python/releases/tag/${src.tag}";
# PubNub Software Development Kit License Agreement
# https://github.com/pubnub/python/blob/master/LICENSE
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ fab ];
};
}