Commit a05032dc authored by Robert Schütz's avatar Robert Schütz
Browse files

python312Packages.python-engineio-v3: init at 3.14.2

parent 74c9f065
Loading
Loading
Loading
Loading
+46 −0
Original line number Diff line number Diff line
{
  aiohttp,
  buildPythonPackage,
  fetchPypi,
  lib,
  requests,
  setuptools,
  six,
  websocket-client,
}:

buildPythonPackage rec {
  pname = "python-engineio-v3";
  version = "3.14.2";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-tYri/+OKIJAWWzeijFwgY9PK66lH584dvZnoBWyzaFw=";
  };

  build-system = [ setuptools ];

  dependencies = [ six ];

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

  pythonImportsCheck = [ "engineio_v3" ];

  # no tests on PyPI
  doCheck = false;

  meta = {
    description = "Engine.IO server";
    homepage = "https://github.com/bdraco/python-engineio-v3";
    license = lib.licenses.mit;
    longDescription = "This is a release of 3.14.2 under the “engineio_v3” namespace for old systems.";
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -12890,6 +12890,8 @@ self: super: with self; {
  python-engineio = callPackage ../development/python-modules/python-engineio { };
  python-engineio-v3 = callPackage ../development/python-modules/python-engineio-v3 { };
  python-etcd = callPackage ../development/python-modules/python-etcd { };
  python-ev3dev2 = callPackage ../development/python-modules/python-ev3dev2 { };