Unverified Commit 91693ebe authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python312Packages.pubnub: 7.4.3 -> 7.4.4
parents 854ffac3 cf6c4e59
Loading
Loading
Loading
Loading
+19 −22
Original line number Diff line number Diff line
{ lib
, aiohttp
, buildPythonPackage
, busypie
, cbor2
, fetchFromGitHub
, pycryptodomex
, pytestCheckHook
, pytest-vcr
, pytest-asyncio
, requests
, pythonOlder
, setuptools
{
  lib,
  aiohttp,
  buildPythonPackage,
  busypie,
  cbor2,
  fetchFromGitHub,
  pycryptodomex,
  pytestCheckHook,
  pytest-vcr,
  pytest-asyncio,
  requests,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "pubnub";
  version = "7.4.3";
  version = "7.4.4";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = pname;
    owner = "pubnub";
    repo = "python";
    rev = "refs/tags/v${version}";
    hash = "sha256-t3lNotfT3C2hv5AGPWZpL3wN68m8HRcjsccUz8QcY5I=";
    hash = "sha256-4Paodw3t2RvAKrDMcWHIGLs5JNtH/9sP+BTyAm/hj4E=";
  };

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  dependencies = [
    aiohttp
@@ -57,9 +56,7 @@ buildPythonPackage rec {
    "test_handshaking"
  ];

  pythonImportsCheck = [
    "pubnub"
  ];
  pythonImportsCheck = [ "pubnub" ];

  meta = with lib; {
    description = "Python-based APIs for PubNub";