Commit fba6c4a9 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent 24c01b4d
Loading
Loading
Loading
Loading
+12 −5
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@

buildPythonPackage rec {
  pname = "python-socketio";
  version = "5.7.1";
  version = "5.7.2";
  format = "setuptools";

  disabled = pythonOlder "3.6";
@@ -23,16 +23,23 @@ buildPythonPackage rec {
    owner = "miguelgrinberg";
    repo = "python-socketio";
    rev = "v${version}";
    hash = "sha256-KVaBSBWLeFJYiNJYTwoExExUmUaeNJ40c/WTgTc2Y/w=";
    hash = "sha256-mSFs/k+3Lp5w4WdOLKj65kOA5b+Nc1uuksVmeeqV58E=";
  };

  propagatedBuildInputs = [
    aiohttp
    bidict
    python-engineio
  ];

  passthru.optional-dependencies = {
    client = [
      requests
      websocket-client
    ];
    asyncio_client = [
      aiohttp
    ];
  };

  checkInputs = [
    mock