Merge pull request #303270 from r-ryantm/auto-update/python312Packages.pubnub

python312Packages.pubnub: 7.4.3 -> 7.4.4
This commit is contained in:
Fabian Affolter 2024-04-11 10:49:39 +02:00 committed by GitHub
commit 91693ebee5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,35 +1,34 @@
{ lib {
, aiohttp lib,
, buildPythonPackage aiohttp,
, busypie buildPythonPackage,
, cbor2 busypie,
, fetchFromGitHub cbor2,
, pycryptodomex fetchFromGitHub,
, pytestCheckHook pycryptodomex,
, pytest-vcr pytestCheckHook,
, pytest-asyncio pytest-vcr,
, requests pytest-asyncio,
, pythonOlder requests,
, setuptools pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pubnub"; pname = "pubnub";
version = "7.4.3"; version = "7.4.4";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = "pubnub";
repo = "python"; repo = "python";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-t3lNotfT3C2hv5AGPWZpL3wN68m8HRcjsccUz8QcY5I="; hash = "sha256-4Paodw3t2RvAKrDMcWHIGLs5JNtH/9sP+BTyAm/hj4E=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
aiohttp aiohttp
@ -57,9 +56,7 @@ buildPythonPackage rec {
"test_handshaking" "test_handshaking"
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "pubnub" ];
"pubnub"
];
meta = with lib; { meta = with lib; {
description = "Python-based APIs for PubNub"; description = "Python-based APIs for PubNub";