depot/third_party/nixpkgs/pkgs/development/python-modules/pubnub/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

68 lines
1.2 KiB
Nix

{
lib,
aiohttp,
buildPythonPackage,
busypie,
cbor2,
fetchFromGitHub,
pycryptodomex,
pytestCheckHook,
pytest-vcr,
pytest-asyncio,
requests,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pubnub";
version = "8.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pubnub";
repo = "python";
rev = "refs/tags/v${version}";
hash = "sha256-GKJv/GJ/h/LVbEa8Wz7iXc8J38UTTlNa0/08+p5sYCA=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
cbor2
pycryptodomex
requests
];
nativeCheckInputs = [
busypie
pytest-asyncio
pytest-vcr
pytestCheckHook
];
disabledTestPaths = [
# Tests require network access
"tests/integrational"
"tests/manual"
"tests/functional/push"
];
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/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}